Local MCP servers rewritten in Rust — no Node runtime, no bundled Chromium. 3-9MB idle vs 100-600+MB for the Node/Python originals.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"rust-mcp-servers": {
"command": "cargo",
"args": [
"run",
"--",
"rust-mcp-servers"
]
}
}
}
Run in terminal:
claude mcp add rust-mcp-servers cargo run -- rust-mcp-servers
Add to .cursor/mcp.json:
{
"mcpServers": {
"rust-mcp-servers": {
"command": "cargo",
"args": [
"run",
"--",
"rust-mcp-servers"
]
}
}
}