Appearance
Installing WeWeb MCP
Connecting a client to WeWeb MCP takes two steps: add the server to your AI client, then sign in to WeWeb and authorize access. The server is available at:
https://ai-api.weweb.io/v1/mcpNew to MCP? Start with Intro to WeWeb MCP →.
Supported clients
The following clients are supported today:
| Client | Connection method |
|---|---|
ChatGPT | Add a custom connector with the server URL |
Claude Desktop | Add a custom connector with the server URL, or edit the config file manually |
Claude Code | Single terminal command |
Cursor | MCP config entry |
VS Code | MCP config entry, or add through MCP settings |
Codex | Add a Streamable HTTP server in settings, then click Authenticate |
Antigravity | Add an entry to mcp_config.json |
Connect your client
ChatGPT
Follow along in the guide above, or use these steps:
- Click your user profile.
- Click
Settings. - Click
Connectors. - Click
Advanced settings. - Toggle on developer mode.
- Click
Create. - Name it
WeWeb. - Copy the MCP URL from this page:
https://ai-api.weweb.io/v1/mcp- Paste it into the Connection field in ChatGPT.
- Confirm you wish to create the app.
- When your browser opens, go to WeWeb to sign in.
- Click
Authorizeand approve access.
Claude Desktop
Follow along in the guide above, or use these steps:
- Click the
+in the chat. - Hover
Connectors. - Hover
Add connector. - Click
Add custom connector. - Name the connector
WeWeb. - Copy the MCP URL from this page:
https://ai-api.weweb.io/v1/mcp- Paste the URL into the URL field in Claude.
- Click
Add. - When your browser opens, go to WeWeb to sign in.
- Click
Authorizeand approve access.
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.
Claude Code
Follow along in the guide above, or use these steps:
- Copy the command below.
- Paste the command into your terminal.
bash
claude mcp add --transport http WeWeb https://ai-api.weweb.io/v1/mcpThe first time you use a WeWeb tool, Claude Code prompts you to authenticate.
Cursor
Follow along in the guide above, or use these steps:
- Copy the JSON block below.
- Click the settings cog icon.
- Go to
MCP. - Click
Add new global MCP server. - 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). - Restart Cursor, and on restart you will be prompted to authenticate with WeWeb.
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.
VS Code
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.
Codex
Follow along in the guide above, or use these steps:
- Open your profile menu in Codex and click
Settings. - Click
Settingsagain to open Codex settings. - Click
MCP servers. - Click
Add server. - Name the MCP
WeWeb. - Select
Streamable HTTP. - Copy the MCP URL from this page:
https://ai-api.weweb.io/v1/mcp- Paste the URL into the URL field in Codex.
- Click
Save. - Click
Authenticate, then sign in to WeWeb and approve access when prompted.
Antigravity
Follow along in the guide above, or use these steps:
- Click the
...menu in the Agent panel. - Click
MCP Servers. - Click
Manage MCP Servers. - Click
View raw config. - Copy the JSON block below.
- In your
mcp_config.jsonfile, paste thewewebblock inside themcpServersobject. - Confirm your file matches the layout shown in the guide.
- Save the file (
⌘ + Son Mac,Ctrl + Son Windows). - Restart Antigravity, and on restart you will be prompted to authenticate with WeWeb.
- MacOS and Linux:
~/.gemini/antigravity/mcp_config.json - Windows:
%USERPROFILE%\.gemini\antigravity\mcp_config.json
json
{
"mcpServers": {
"weweb": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://ai-api.weweb.io/v1/mcp"]
}
}
}INFO
Already running other MCP servers? Place the "weweb" block alongside them, inside the single mcpServers object. Keeping one mcpServers key is what keeps the file valid JSON.
Authorize access
No matter which client you use, connecting to the WeWeb MCP server prompts you to sign in to WeWeb and authorize access. The first time you connect, or when your session expires, your client opens a browser window with a screen like this:

Review what access is being requested, confirm you are signed in to the correct WeWeb account, then click Authorize. Until you approve, the agent cannot call WeWeb tools on your behalf.
Check the connection
Once your client is connected and authorized, ask the agent to list your workspaces and projects, then name the project you want to work on. If it comes back with your project list, your setup is working and you can start building.
CONTINUE LEARNING
Your client can now call WeWeb tools. Each tool is a single action the agent can run, such as creating a page or adding a table.

