MCP Catalogs
Home

rust-docs-mcp-server vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

rust-docs-mcp-server
by Govcraft
filesystem
by modelcontextprotocol
Stars★ 276★ 85,748
30d uses
Score4877
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
File SystemDeveloper ToolsProductivity
LanguageRustTypeScript
Last commit6 mo agothis month

rust-docs-mcp-server · Summary

MCP server providing up-to-date Rust crate documentation via semantic search and LLM summarization.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

rust-docs-mcp-server · Use cases

  • AI coding assistants getting up-to-date API documentation for Rust crates
  • Development teams ensuring their AI tools use current crate features and methods
  • Reducing manual documentation lookup for frequently updated Rust libraries

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

rust-docs-mcp-server · Install

Installation

Pre-built Binary (Recommended)

  1. Download the appropriate binary from [GitHub Releases](https://github.com/Govcraft/rust-docs-mcp-server/releases)
  2. Extract the binary and place it in your PATH

From Source

git clone https://github.com/Govcraft/rust-docs-mcp-server.git
cd rust-docs-mcp-server
cargo build --release

Claude Desktop Configuration

{
  "mcpServers": {
    "rust-docs-serde": {
      "command": "/path/to/rustdocs_mcp_server",
      "args": ["serde@^1.0"]
    },
    "rust-docs-tokio": {
      "command": "rustdocs_mcp_server",
      "args": ["tokio"]
    }
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.