mcp-rust-docs
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-rust-docslook up tokio documentation"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Rust Documentation Server
This is a Model Context Protocol (MCP) server that provides comprehensive access to Rust crate documentation and metadata, offering essential context for LLMs when working with Rust code.
Features
Documentation Lookup: Fetches documentation for any Rust crate available on docs.rs
Crate Search: Search for crates on crates.io with detailed results
Metadata Retrieval: Get comprehensive metadata for specific crates
Pagination Support: Handle large documentation with pagination
Error Handling: Robust error handling with detailed logging
Session Tracking: Session management for better debugging
Structured Responses: Well-formatted, structured responses
Related MCP server: Rust Docs MCP Server
Architecture
The server follows a modular architecture inspired by AWS MCP server patterns:
mcp-rust-docs/
├── index.js # Entry point (backward compatibility)
├── src/
│ ├── server.js # Main server implementation with tools
│ ├── models.js # Data models and validation schemas
│ └── utils.js # Utility functions and API clients
├── package.json
└── README.mdTools Available
1. lookup_crate_docs
Fetches and returns documentation for a specific Rust crate from docs.rs.
Parameters:
crateName(required): Name of the Rust crateversion(optional): Specific version (defaults to 'latest')maxLength(optional): Maximum characters to return (default: 8000)startIndex(optional): Starting character index for pagination (default: 0)
Example Usage:
// Basic lookup
lookup_crate_docs({ crateName: "tokio" })
// Specific version with pagination
lookup_crate_docs({
crateName: "serde",
version: "1.0.0",
maxLength: 5000,
startIndex: 0
})2. search_crates
Search for Rust crates on crates.io with comprehensive results.
Parameters:
query(required): Search query stringlimit(optional): Maximum results to return (1-50, default: 10)
Example Usage:
search_crates({ query: "web framework", limit: 5 })3. get_crate_metadata
Get detailed metadata for a specific Rust crate from crates.io.
Parameters:
crateName(required): Name of the Rust crate
Example Usage:
get_crate_metadata({ crateName: "axum" })Installation
# Clone the repository
git clone https://github.com/0xKoda/mcp-rust-docs.git
cd mcp-rust-docs
# Install dependencies
npm installPrerequisites
Node.js >= 16.0.0
npm
Usage
# Start the server
npm start
# Development mode with debugging
npm run dev
# Run tests
npm testIntegrating with AI Assistants
Claude Desktop
Add the following to your Claude Desktop configuration file (claude_desktop_config.json):
{
"mcpServers": {
"rust-docs": {
"command": "node",
"args": ["/absolute/path/to/index.js"]
}
}
}Amazon Q CLI
The server is compatible with Amazon Q CLI's MCP integration. Configure it in your Q CLI settings.
Example Usage Scenarios
Once the server is running and configured with your AI assistant, you can ask questions like:
Documentation Lookup
"Look up the documentation for the 'tokio' crate"
"Show me the documentation for 'serde' version 1.0.0"
"Get the first 5000 characters of 'axum' documentation"
Crate Search
"Search for web framework crates"
"Find crates related to async programming"
"Show me the top 5 HTTP client crates"
Metadata Queries
"Get metadata for the 'reqwest' crate"
"What's the latest version of 'clap'?"
"Show me the download statistics for 'rand'"
Advanced Queries
"Compare the documentation of 'tokio' and 'async-std'"
"What are the main features of the 'ratatui' crate?"
"Find alternatives to the 'hyper' crate"
Key Improvements Over Original
This implementation applies patterns from the AWS Documentation MCP Server:
1. Modular Architecture
Separated concerns into models, utilities, and server logic
Better maintainability and testability
2. Enhanced Error Handling
Comprehensive error handling with detailed messages
Proper HTTP status code handling
Graceful degradation for network issues
3. Multiple Tools
lookup_crate_docs: Documentation fetchingsearch_crates: Crate discoveryget_crate_metadata: Detailed crate information
4. Better Validation
Strong input validation using Zod schemas
Parameter bounds checking
Type safety throughout
5. Session Management
Session IDs for tracking and debugging
Better logging with session context
6. Pagination Support
Handle large documentation with
startIndexandmaxLengthContinuation indicators for truncated content
7. Structured Responses
Consistent response formatting
Rich metadata in responses
Better error reporting
Testing with MCP Inspector
You can test this server using the MCP Inspector:
npx @modelcontextprotocol/inspectorThen select "Connect to a local server" and follow the prompts.
API Endpoints Used
docs.rs:
https://docs.rs/{crate}/{version}/{crate}/index.htmlcrates.io Search:
https://crates.io/api/v1/crates?q={query}crates.io Metadata:
https://crates.io/api/v1/crates/{crate}
Configuration
The server can be configured through environment variables:
RUST_DOCS_LOG_LEVEL: Set logging level (default: 'info')RUST_DOCS_MAX_CONTENT_LENGTH: Maximum content length (default: 50000)RUST_DOCS_REQUEST_TIMEOUT: Request timeout in ms (default: 30000)
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Development Setup
# Install dependencies
npm install
# Run in development mode
npm run dev
# Run tests
npm test
# Lint code
npm run lintLicense
MIT
Changelog
v2.0.0
Complete rewrite with modular architecture
Added crate search functionality
Added metadata retrieval
Enhanced error handling and logging
Added pagination support
Improved documentation and examples
v1.0.0
Initial release with basic documentation lookup
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/trungnguyenvn/mcp-rust-docs'
If you have feedback or need assistance with the MCP directory API, please join our Discord server