For AI agents: a documentation index is available at https://docs.coverbase.com/llms.txt — this page is also available in markdown by appending .md to the URL.
The exact connection flow depends on which client you’re using. The general pattern is the same: point the client at the Coverbase MCP endpoint, complete the OAuth flow in your browser, and the tools become available in your session.
Server endpoint
Claude Code
Add the Coverbase server with the HTTP transport:/mcp, and choose Authenticate to complete OAuth sign-in in your browser. The Coverbase tools are available once the status shows connected.
Claude.ai
Authorize
Click Add, then Connect. You’ll be redirected to Coverbase to sign in, review the requested scopes, and approve.
Claude Desktop
Open Claude Desktop, go to Settings → Connectors, and click Add custom connector. Name itCoverbase, paste the server endpoint, and click Add. Click Connect and sign in to Coverbase when prompted.
Cursor
In Cursor’s settings, open MCP → Add new server, or add the server to~/.cursor/mcp.json:
VS Code
VS Code supports MCP servers natively in GitHub Copilot agent mode. Add the server to yoursettings.json:
Microsoft Copilot Studio
Copilot Studio can call Coverbase as a Model Context Protocol tool.Add a tool
In your agent, open Tools → Add a tool → Model Context Protocol, then add a new MCP server.
Configure the server
Set the transport to Streamable HTTP and enter the server endpoint
https://mcp.coverbase.app/mcp.Copilot Studio probes the RFC 8414 §3.1 path-insertion discovery variant (
/.well-known/oauth-authorization-server/{path}). The Coverbase server serves authorization-server metadata at that path, so dynamic discovery works out of the box. If discovery fails with “Could not discover authorization server metadata,” confirm you entered the full /mcp endpoint.Microsoft ecosystem and other agents
Coverbase works with any framework that speaks MCP over OAuth 2.0 with Streamable HTTP transport, including Semantic Kernel, the Microsoft Agent Framework (AutoGen), and Azure AI Foundry agents. Registerhttps://mcp.coverbase.app/mcp as a remote MCP server / tool in your framework’s MCP client and let it run the OAuth flow.
Other popular clients:
- Cline (VS Code): open the Cline MCP Servers panel and add a new remote server with the Coverbase endpoint.
- Goose: run
goose configure, choose to add a remote MCP server, and enter the endpoint. - MCP Inspector: run
npx @modelcontextprotocol/inspector, enter the endpoint, authenticate, and exercise tools directly.
Clients without remote MCP support (mcp-remote)
For clients that only support local stdio servers, bridge to the remote server withmcp-remote:
mcp-remote proxies the connection and handles the OAuth handshake in your browser on first use.
Other clients
Any client that supports MCP with OAuth 2.0 and Streamable HTTP transport should work. The OAuth discovery documents are published at
https://mcp.coverbase.app/.well-known/oauth-protected-resource and https://mcp.coverbase.app/.well-known/oauth-authorization-server. Point your client at the server URL and the rest is standard.Troubleshooting
No tools appearing, permission denied errors, write actions not executing,
403 Forbidden during authentication, and other common issues.