Skip to content

EmDash Docs MCP

The EmDash documentation site exposes a Model Context Protocol server at https://docs.emdashcms.com/mcp. Connect your coding assistant to it and the assistant can search the docs as you work, instead of guessing from training data that may be out of date.

This is separate from your site’s MCP server (covered in the AI Tools guide). The docs MCP only knows about EmDash’s documentation — it cannot read or modify your content. Most developers want both: the docs MCP to look things up, and the site MCP to manage content.

The docs MCP exposes a single tool:

ToolPurpose
search_docsSearch the EmDash documentation. Returns relevant chunks with source URLs and match scores.

Behind the scenes it uses Cloudflare AI Search over an index built from docs.emdashcms.com. The crawler keeps the index in sync with the published site, so answers reflect the docs you’re reading.

The endpoint is:

https://docs.emdashcms.com/mcp

No authentication, no API key. It’s public and read-only.

If you started your project from an EmDash template (npm create emdash), three config files are already in place and will be picked up automatically:

FileUsed by
.mcp.jsonClaude Code
.cursor/mcp.jsonCursor
.vscode/mcp.jsonVS Code

Just open the project and accept the workspace-trust prompt your tool shows on first run. Nothing else to do.

If you’re not using a template, or you use a different tool, add it once with the snippet for your client:

Add the server with the Claude Code CLI:

Terminal window
claude mcp add --transport http emdash-docs https://docs.emdashcms.com/mcp

Or commit a .mcp.json at your project root:

{
"mcpServers": {
"emdash-docs": {
"type": "http",
"url": "https://docs.emdashcms.com/mcp"
}
}
}
  • You’re building an EmDash site and want your AI assistant to look up the correct API, hook name, or config option from current docs rather than half-remembered training data.
  • You’re writing a plugin and want to find which hooks fire in what order.
  • You’re porting a WordPress theme and want examples of seed file patterns.
  • You’re stuck on an error and want to search release notes and concepts.

If your project uses AGENTS.md (or CLAUDE.md, .cursorrules, etc.) to instruct AI tools, point them at the docs MCP so they prefer real documentation over assumptions:

AGENTS.md
## Documentation
Look up EmDash documentation via the `emdash-docs` MCP server when you need to
verify an API, hook, config option, or pattern. Prefer the docs MCP over
assumptions from training data -- the docs reflect the current published
behaviour.

The EmDash starter templates ship with this snippet pre-included.