Description

Prevents outdated Rust suggestions by fetching current crate docs with embeddings.

Installation

npx -y rust-docs-mcp
npm install rust-docs-mcp
git clone https://github.com/Govcraft/rust-docs-mcp-server

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "rust-docs-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "rust-docs-mcp"
      ]
    }
  }
}