Skip to content
📌 Pinned snapshot of docs v0.1 (frozen at the docs-v0.1 release). The latest docs live at the same page under /v0/.

MCP server

@fixyourdocs/mcp-server is a Model Context Protocol server that exposes a single toolfile_doc_feedback — so any MCP client can file a Docs Feedback Protocol report as one tool call when it hits broken, incorrect, outdated, missing, or unclear docs.

No phone-home, no telemetry: the server contacts the Hub only when an agent explicitly calls the tool.

It’s designed to run via npx, so there’s nothing to install up front — your client launches it on demand over the standard MCP stdio transport:

Terminal window
npx -y @fixyourdocs/mcp-server

Each client has its own config file, but the shape is the same: a named server entry with command + args.

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
"mcpServers": {
"fixyourdocs": {
"command": "npx",
"args": ["-y", "@fixyourdocs/mcp-server"]
}
}
}

Restart Claude Desktop — file_doc_feedback should appear in the tool list.

Use the MCP inspector to list the tool and send a fixture report:

Terminal window
npx @modelcontextprotocol/inspector npx -y @fixyourdocs/mcp-server

The inspector UI lists file_doc_feedback, accepts a report, and shows the { id, url } returned by the Hub.

Found something wrong, missing, or out of date on this page? File a docs-feedback report →