Appearance
Connect Claude Desktop to the WeWeb MCP Server
Follow along in the guide above, or use these steps:
- In Claude, click
+under the chat, then go toConnectors→Add connector→Add custom connector. - Name your new connector, set its server URL to the WeWeb MCP URL, then click
Add:
https://ai-api.weweb.io/v1/mcp- Sign in to your WeWeb account when the browser opens.
Manual setup
If you prefer to wire up the server by hand, open Claude Desktop's configuration file and register WeWeb there:
Follow along in the guide above, or use these steps:
- Copy the JSON block below.
- Click your user profile in the bottom left.
- Click
Settings. - Click
Developer. - Click
Edit Config. - Open the
.jsonfile in your code editor of choice. - Inside the
mcpServersobject, paste theweweb-aiJSON you copied from above. - Confirm your file matches the layout shown in the guide.
- Save the file (
⌘ + Son Mac,Ctrl + Son Windows).
- MacOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
json
{
"mcpServers": {
"weweb-ai": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://ai-api.weweb.io/v1/mcp"]
}
}
}INFO
Already running other MCP servers? Place the "weweb-ai" block alongside them, inside the single mcpServers object. Keeping one mcpServers key is what keeps the file valid JSON.
Restart Claude Desktop, and on restart you will be prompted to authenticate with WeWeb.

