Skip to main content

Getting Started

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 installnpx runs 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:

bash
npm install -g callmissed-docs-mcp

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:

ClientPath
Claude Desktopclaude_desktop_config.json
Cursor~/.cursor/mcp.json
VS Code.vscode/mcp.json (workspace) or User Configuration
Windsurf~/.codeium/windsurf/mcp_config.json
OpenCodeopencode.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:

text
Use the CallMissed docs (/callmissed/callmissed-docs) from Context7 to wire up streaming chat completions.
tip
The dedicated callmissed-docs-mcp server 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:

ToolDescription
callmissed_searchFuzzy search across all documentation
callmissed_grepRegex search over doc content
callmissed_catRead a documentation chunk by ID
callmissed_lsList available documentation pages
callmissed_findSubstring search across pages

Configuration

The server reads one optional environment variable:

VariableDefaultDescription
CALLMISSED_DOCS_APIhttps://api.callmissed.com/api/v1/docs/exportDocs 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:

json
{
  "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.

Was this page helpful?