Docs MCP Server
Connect the CallMissed documentation to your AI coding agent with the official callmissed-docs MCP server — searchable docs inside Claude, Cursor, VS Code, Windsurf, and OpenCode.
Overview
The CallMissed Docs MCP server brings this entire documentation site into your AI coding agent through the Model Context Protocol. Instead of copy-pasting docs, your agent can search, grep, and read CallMissed docs directly while it writes your integration.
It is published on npm as callmissed-docs-mcp, runs locally over stdio via npx, and stays current by fetching the live docs export from the CallMissed API with an offline cache fallback.
- Always up to date — pulls the latest docs on startup, caches for 1 hour
- Works offline — falls back to the local cache when the API is unreachable
- Fast search — fuzzy search plus regex grep over every doc page
- Zero install —
npxruns the latest version on demand
Tip: Use the Copy page dropdown at the top of any docs page to copy the MCP config or one-click connect to Cursor and VS Code.
Install
The server runs through npx, so no global install is required. To install it globally anyway:
npm install -g callmissed-docs-mcpInstall via CLI (one command)
The fastest way in. Several coding agents can add an MCP server from a single terminal command — no config file to hand-edit.
Any agent (Cursor, Claude Code, Codex, Windsurf, VS Code, and more) — the cross-agent installer detects the agents on your machine and writes the right config for each:
npx add-mcp "npx -y callmissed-docs-mcp" --name callmissed-docsClaude Code:
claude mcp add callmissed-docs -- npx -y callmissed-docs-mcpCodex CLI:
codex mcp add callmissed-docs -- npx -y callmissed-docs-mcpAfter it runs, restart the agent — the CallMissed docs tools appear alongside your other tools. Verify with claude mcp list or codex mcp list.
Cursor, VS Code, Windsurf, OpenCode and Kilo Code are configured through their MCP config file (no dedicated
mcp addcommand). Use the JSON below, or the cross-agentnpx add-mcpone-liner above.
Connect Your Client
Add the server to your client's MCP configuration.
{
"mcpServers": {
"callmissed-docs": {
"command": "npx",
"args": ["-y", "callmissed-docs-mcp"]
}
}
}Config file locations:
| Client | Path |
|---|---|
| Claude Desktop | claude_desktop_config.json |
| Cursor | ~/.cursor/mcp.json |
| VS Code | .vscode/mcp.json (workspace) or User Configuration |
| Windsurf | ~/.codeium/windsurf/mcp_config.json |
| OpenCode | opencode.json (project root) |
After adding the config, restart your client. The CallMissed docs tools then appear automatically alongside your other tools.
Use via Context7
Context7 aggregates library documentation for AI agents. CallMissed docs are indexed there under the library ID /callmissed/callmissed-docs — so if you already run the Context7 MCP server, you can pull CallMissed docs through it without installing a separate server.
Reference the library directly in your prompt:
Use the CallMissed docs (/callmissed/callmissed-docs) from Context7 to wire up streaming chat completions.Tip: The dedicated
callmissed-docs-mcpserver always serves the live docs export. Context7 is a convenient option when it's already part of your toolchain.
Available Tools
Once connected, your agent gains these tools:
| Tool | Description |
|---|---|
callmissed_search | Fuzzy search across all documentation |
callmissed_grep | Regex search over doc content |
callmissed_cat | Read a documentation chunk by ID |
callmissed_ls | List available documentation pages |
callmissed_find | Substring search across pages |
Configuration
The server reads one optional environment variable:
| Variable | Default | Description |
|---|---|---|
CALLMISSED_DOCS_API | https://api.callmissed.com/api/v1/docs/export | Docs export endpoint the server fetches on startup |
To point the server at a different docs export endpoint, set the variable in your MCP client's env block:
{
"mcpServers": {
"callmissed-docs": {
"command": "npx",
"args": ["-y", "callmissed-docs-mcp"],
"env": {
"CALLMISSED_DOCS_API": "https://api.callmissed.com/api/v1/docs/export"
}
}
}
}Ready to connect? Use the Copy page menu at the top of any docs page to grab the config or one-click install into Cursor or VS Code.
Libraries & SDKs
Use the OpenAI SDK to integrate CallMissed APIs — our endpoints are fully OpenAI-compatible.
Account MCP Server
Give an AI agent tools that act on your CallMissed account — send WhatsApp messages, review campaigns, conversations and contacts, and place calls — over the Model Context Protocol with your API key.