// Model Context Protocol
Connect WormGPT to your assistant.
The WormGPT MCP server lets Claude, ChatGPT, Cursor, and other MCP-capable clients call account-aware tools on your behalf. Authentication is OAuth 2.1 — you approve each client in your browser.
Endpoint
mcp endpoint
https://worm-gpt.com/mcpAny MCP client that supports remote OAuth servers can connect using this URL.
Claude (Desktop / Web)
- Open Claude → Settings → Connectors → “Add custom connector.”
- Name the connector WormGPT and paste the endpoint URL above.
- Approve the connection in the browser when prompted.
- Enable the connector in the composer and ask Claude to use WormGPT tools.
Claude Code
terminal
claude mcp add --scope user --transport http wormgpt 'https://worm-gpt.com/mcp'Then run /mcp inside Claude Code to complete the sign-in.
ChatGPT (Developer mode)
- Enable Developer mode in Settings → Connectors → Advanced (heed ChatGPT's warning notice).
- Create a new custom connector with the endpoint URL above.
- Enable the app in the chat composer.
Other MCP clients
For clients that accept a JSON server list (e.g. Cursor), add:
mcp config
{
"mcpServers": {
"wormgpt": {
"type": "http",
"url": "https://worm-gpt.com/mcp"
}
}
}Tools & metering
get_account
Returns the signed-in user's email, token balance, and lifetime access flag.
list_transactions
Lists recent purchases and grants tied to your account.
Account-scoped
All MCP tools act as the authenticated user under row-level security.
One balance
Any billable MCP action deducts from the same balance as chat and the API.
Troubleshooting
- Sign in on worm-gpt.com in the same browser before approving the connection.
- If the client caches an old tool list, remove and re-add the connector.
- Prefer the API + a personal key for headless automations — see API docs.
