mcp-rustdoc-parser

automataIA/mcp-rustdoc-parser
★ 6 stars Rust 🧠 Memory/Knowledge Updated 2mo ago
A Model Context Protocol (MCP) server for parsing and querying Rust documentation. Extracts detailed information about Rust items (functions, structs, enums) from project documentation and serves them via stdio transport. Perfect for integrating Rust documentation into AI-powered development tools.
View on GitHub →

Quick Install

Copy the config for your editor. Some servers may need additional setup — check the README.

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "mcp-rustdoc-parser": {
      "command": "cargo",
      "args": [
        "run",
        "--",
        "mcp-rustdoc-parser"
      ]
    }
  }
}