Adapter exposes a Model Context Protocol server over SSE transport. Once connected, Claude can search your data, answer questions, and pull context from your workspace without you copying anything into the chat. Endpoint:Documentation Index
Fetch the complete documentation index at: https://docs.beta.adapter.com/llms.txt
Use this file to discover all available pages before exploring further.
https://api.adapter.com/mcp/sse
Auth: Bearer token — a pk_live_… API key with the api:write scope. See API keys.
Claude Desktop
Claude Desktop usesmcp-remote to bridge the SSE transport.
Find your config file
Open or create
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows).Add the Adapter server
pk_live_... with your key, or set ADAPTER_API_KEY in your shell environment and omit the env block.Claude Code
Claude Code supports SSE transport natively.- CLI
- settings.json
/mcp inside Claude Code to confirm the server is listed and its tools are available.
Generic MCP clients
Any client that supports SSE transport can connect directly:mcp-remote:
Available tools
| Tool | When to use |
|---|---|
search_knowledge | Browse or discover records — “find emails about the rebrand”, “show issues mentioning payments” |
get_context | Pull background before writing — “summarize what we know about Acme”, “help me write a retro” |
query_knowledge | Get a direct, cited answer — “what did we decide about pricing”, “who owns the mobile roadmap” |
list_connections | See which data sources are connected before searching |
search_knowledge
get_context
query_knowledge
list_connections
No parameters. Returns provider name, resource types, and connection date for each connected source.Troubleshooting
401 from the SSE endpoint — Check that your API key starts withpk_ and that you requested or already have the api:write scope. See API keys.
Tools missing after connecting — Run list_connections first. If no sources are connected, the knowledge tools will return empty results rather than an error.
mcp-remote not found — Make sure Node.js 18+ is installed. npx downloads mcp-remote on first run; subsequent runs use the cache.