Back to Browse

Agentdocs MCP Server

Developer ToolsLow Risk10.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

Fresh, source-verified docs for building MCP servers and Claude agents, for AI coding agents.

About

Fresh, source-verified docs for building MCP servers and Claude agents, for AI coding agents.

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (2 strong, 2 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.

13 files analyzed ยท 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-titov-d-agentdocs": {
      "args": [
        "-y",
        "mcp-agentdocs"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

agentdocs

Fresh, source-verified docs for building MCP servers and Claude agents โ€” served straight to your AI coding agent over MCP.

npm license: MIT Model Context Protocol

Coding agents hallucinate on fast-moving APIs like the Model Context Protocol and the Claude Agent SDK: training data lags the spec, so you get plausible-but-wrong imports, deprecated patterns, and invented options. agentdocs is a local MCP server that gives your agent a curated, source-verified corpus to search instead of guessing.

  • ๐Ÿ”Ž Three tools: list_topics, search_docs, get_doc
  • ๐Ÿ“Ž Every answer is attributed to its upstream source URL
  • ๐Ÿ  Runs locally over stdio โ€” no account, no hosting, no data leaves your machine
  • โœ… Each doc carries a verified flag set only after human review against the source

Install & connect

Requires Node.js 18+.

Claude Code

claude mcp add agentdocs -- npx -y mcp-agentdocs@latest

Cursor / other MCP clients (mcp.json)

{
  "mcpServers": {
    "agentdocs": {
      "command": "npx",
      "args": ["-y", "mcp-agentdocs@latest"]
    }
  }
}

Then ask your agent things like "check agentdocs for how MCP stdio handles logging" or "search agentdocs for the Streamable HTTP session header" โ€” it will call the tools and answer from the verified corpus.

Tools

ToolUse it to
list_topicsSee every curated doc, its topic, source URL, and verified status
search_docs(query, topic?)Get ranked, source-attributed snippets for a question
get_doc(id)Read the full verified markdown of one document

What's covered (v1)

The Model Context Protocol (spec 2025-11-25) and building MCP servers / Claude agents. Corpus grows over time; run list_topics for the current set.

Freshness

Every document records the date it was last verified against its primary source. Sources are diffed on a regular cadence; when one drifts, the affected doc is re-verified and a new version is published. Using mcp-agentdocs@latest (as above) keeps you on the current corpus. See CHANGELOG.md for what changed and when.

Development

npm install
npm run build      # tsc -> dist/
npm test           # vitest: retrieval, manifest integrity, unicode safety
npm run ingest     # refresh sources into corpus/_staging/ for human review

Curation is the point: npm run ingest fetches upstream sources for review but never silently overwrites a curated doc โ€” a human diffs, promotes, and sets verified: true in corpus/manifest.json only after checking the content against its source. Run npm run check-freshness to flag docs that have drifted or are due for re-verification.

License

MIT

Reviews

No reviews yet

Be the first to review this server!