MCP server
@fixyourdocs/mcp-server is a Model Context Protocol server that exposes a
single tool — file_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.
Run it
Section titled “Run it”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:
npx -y @fixyourdocs/mcp-serverWire it into your client
Section titled “Wire it into your client”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.
Edit ~/.cursor/mcp.json (or your workspace’s .cursor/mcp.json):
{ "mcpServers": { "fixyourdocs": { "command": "npx", "args": ["-y", "@fixyourdocs/mcp-server"] } }}Edit ~/.codex/config.toml:
[mcp_servers.fixyourdocs]command = "npx"args = ["-y", "@fixyourdocs/mcp-server"]Verify it
Section titled “Verify it”Use the MCP inspector to list the tool and send a fixture report:
npx @modelcontextprotocol/inspector npx -y @fixyourdocs/mcp-serverThe 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 →