Appearance
Connect VS Code
VS Code connects to WeWeb through an entry in its MCP configuration. You can add the server for every project, or for one workspace only. The server is available at:
https://ai-api.weweb.io/v1/mcpAdd the server
Follow along with these steps to add WeWeb to your user-level MCP configuration:
- Open the Command Palette (
⌘ + Shift + Pon Mac,Ctrl + Shift + Pon Windows). - Run
MCP: Open User Configuration. - Copy the JSON block below.
- Inside the
serversobject, add theweweb-aiblock alongside any other servers you already have. - Save the file (
⌘ + Son Mac,Ctrl + Son Windows). - Restart VS Code, and on restart you will be prompted to authenticate with WeWeb.
json
{
"servers": {
"weweb-ai": {
"type": "http",
"url": "https://ai-api.weweb.io/v1/mcp"
}
}
}INFO
Already running other MCP servers? Place the "weweb-ai" block alongside them, inside the single servers object. Keeping one servers key is what keeps the file valid JSON.
To add WeWeb to one project only, run MCP: Open Workspace Folder MCP Configuration in step 2 instead. This saves the server to .vscode/mcp.json in your workspace.
CONTINUE LEARNING
VS Code can now call WeWeb tools. Each tool is a single action the agent can run, such as creating a page or adding a table.

