Setup
The Gomry MCP server is a hosted remote MCP endpoint. You don’t install anything locally — you generate a token, paste a URL into your AI client, and you’re done.1. Generate a token
Open the MCP settings page
In your Gomry dashboard, go to Organization Settings → MCP.
The MCP tab is only visible to admins and owners of an organization.
Click Generate Token
A new token is created and the full MCP URL is shown once:Copy this URL immediately — the raw token is never shown again.
2. Connect your AI client
- Claude
- Cursor
- Claude Desktop
- Open Settings → Connectors (or Tools, depending on the version).
- Click Add a connector → Custom MCP server.
- Paste the URL you copied:
- Save. Claude will call
tools/listand show the available Gomry tools in the picker.
3. Verify it works
In your client, ask:“List my events.”The assistant should invoke the
list_events tool and return your organization’s events. If you see a 401 error, the token is missing or revoked. If you see “tool not found,” your privileges don’t include the required scope (see Available tools).
Authentication details
The MCP endpoint accepts the token in any of these forms — clients vary in which they use:| Source | Example |
|---|---|
| Query parameter | ?token=YOUR_TOKEN_HERE |
| Authorization header | Authorization: Bearer YOUR_TOKEN_HERE |
| Legacy query parameter | ?api_key=YOUR_TOKEN_HERE |
?token= for the initial handshake and switches to Authorization: Bearer for subsequent tool calls. Both refer to the same token.
Revoking a token
Open Organization Settings → MCP and click Revoke. Within five minutes (server-side cache TTL), the token stops working everywhere. Generate a fresh one any time — revocation is the safe path when in doubt.Errors you might hit
| Status | Body | Meaning |
|---|---|---|
401 | Missing authentication. | No token sent. Check the URL or header. |
401 | Invalid or revoked MCP token | Token doesn’t match an active record. Regenerate. |
429 | Rate limit exceeded. | More than 120 requests/minute for this token. Slow down. |
-32001 (JSON-RPC) | Tool not found: … | The tool exists but your privileges don’t include it, OR the tool name is wrong. |
