Connecting to Keeping's MCP server
How to connect to Keeping's MCP server.
Prerequisites
A Keeping account with an active subscription
MCP access enabled for your organization. Billing Admin's can enable MCP Access in your Organization Settings.

Billing Admins Can Enable MCP Access
Connecting from Claude Desktop
Open Claude Desktop and go to Settings (gear icon)
Select Integrations or MCP Servers
Click Add MCP Server
Enter the following server URL:
Claude will open a browser window asking you to sign in with your Google account (the same one you use for Keeping)
Review the requested permissions and click Allow
You're connected! Try asking Claude something like "Show me my open tickets"
Connecting from Claude Code (CLI)
Add the Keeping MCP server to your Claude Code configuration:
Claude Code will handle OAuth authentication automatically — you'll be prompted to sign in via your browser on first use.
Connecting from Cursor
Open Cursor and go to Settings → MCP
Click Add new MCP server
Set the transport type to HTTP
Enter the server URL:
Cursor will prompt you to authenticate via your browser
Sign in with your Google account and authorize access
Connecting from ChatGPT
ChatGPT supports MCP connections through its Actions or Connectors feature (availability may vary by plan):
In a ChatGPT conversation, look for the MCP or Connect tools option
Enter the Keeping MCP server URL:
Authenticate via the browser popup using your Google account
Once connected, ChatGPT can use your Keeping tools
Connecting from Other MCP Clients
Any MCP-compatible client can connect to Keeping using:
Server URL:
https://mcp.keeping.com/Transport: Streamable HTTP
Authentication: OAuth 2.1 with PKCE (handled automatically by most clients)
The server supports OAuth Discovery via these standard endpoints:
https://mcp.keeping.com/.well-known/oauth-authorization-serverhttps://mcp.keeping.com/.well-known/oauth-protected-resource
Connecting with a Personal Access Token
If your MCP client can't complete the OAuth 2.1 browser sign-in — for example a script, a server-side automation, or a custom-built client — you can authenticate with a Personal Access Token (PAT) instead. A PAT is tied to your own agent account and carries the same mcp:read and mcp:write permissions you have in Keeping.

Prerequisites
MCP access must be enabled for your company. If you don't see the option below, ask a Keeping admin to turn on MCP access in your company settings.
Generate your token
In Keeping, open Settings and select the Preferences tab.
Under MCP Personal Access Token, click Generate Token.
Copy the token immediately - it starts with
kp_at_and is shown only once. Treat it like a password and store it somewhere secure. If you lose it, generate a new one.
Use your token
Send the token as a Bearer token in the Authorization header on every request to https://mcp.keeping.com/:
Most MCP clients have a field for a bearer token or a custom header. For a hand-built client, set the header on each request - for example:
Revoke or replace a token
Generating a new token from the Preferences tab automatically revokes your previous one.
To turn off access entirely, click Revoke Token on the same screen. Revoking takes effect immediately.
"Authentication failed" or 401 errors
Confirm the
Authorizationheader is exactlyBearerfollowed by your token, with no extra spaces or quotes.The token may have been revoked or replaced by a newer one — generate a fresh token and try again.
If all tokens are rejected, MCP access may have been disabled for your company; contact a Keeping admin or support@keeping.com.
Permissions & Scopes
When you connect an AI tool, you'll be asked to authorize one or both of these permission scopes:
mcp:read— Access to all read and analytics toolsmcp:write— Access to all write tools
You can grant read-only access if you only want your AI assistant to retrieve information without making changes.
Your AI assistant will only be able to access the mailboxes and data that your Keeping account has permission to view. Existing team permissions are fully respected.
Troubleshooting
"Authentication failed" or 401 errors
Your access token may have expired. Most MCP clients refresh tokens automatically — try disconnecting and reconnecting.
Make sure you're signing in with the same Google account you use for Keeping.
"Access denied" or 403 errors
MCP access may not be enabled for your organization. Contact support@keeping.com to enable it.
Your Keeping subscription may have lapsed. Check your subscription status in Keeping settings.
"Tool not found" or missing tools
Analytics tools require a Premium Reporting subscription. Upgrade at keeping.com/pricing.
Write tools require the
mcp:writescope. Re-authorize with both read and write permissions.
Connection drops or timeouts
The MCP server enforces rate limits to ensure stability. If you're making many requests in quick succession, wait a moment and try again.
Check that your network allows outbound HTTPS connections to
mcp.keeping.com.
"Mailbox not found" or empty results
Your AI assistant can only access mailboxes your Keeping account has permission to view. Check your mailbox permissions in Keeping settings.
Still need help?
Contact us at support@keeping.com.
Authentication & Security
The Keeping MCP server uses OAuth 2.1 with PKCE for authentication — the same standard used by major platforms like Google and GitHub. Here's what that means for you:
You sign in with Google — the same account you use for Keeping. No separate passwords or API keys to manage.
Access tokens expire after 1 hour and are automatically refreshed, so your connection stays active without re-authenticating.
Refresh tokens are valid for 90 days. After that, you'll need to re-authorize.
Tokens are encrypted — Keeping never stores your raw tokens. Only a secure hash is kept.
Replay protection — if a token is ever intercepted and reused, Keeping automatically revokes the entire token family.
You can revoke access at any time by contacting support@keeping.com.
Last updated