Appearance
Connect Visual Studio Code to the WeWeb MCP 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.

