Crates.io | corrode-mcp |
lib.rs | corrode-mcp |
version | |
source | src |
created_at | 2025-04-03 08:51:08.478697+00 |
updated_at | 2025-04-11 00:04:08.6487+00 |
description | Corrode Code MCP Server for Rust |
homepage | |
repository | |
max_upload_size | |
id | 1617814 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Corrode Code Model Context Protocol (MCP) Rust Server.
Model Context Protocol (MCP) is an open protocol that enables seamless integration between LLM applications and external data sources and tools. Whether you're building an AI-powered IDE, enhancing a chat interface, or creating custom AI workflows, MCP provides a standardized way to connect LLMs with the context they need.
This project provides an MCP server implementation in Rust for code-related tasks.
The Corrode MCP Server offers powerful capabilities for Rust developers:
Crates.io Integration: Seamlessly search, explore, and manage Rust crates directly from your AI interface.
Code Analysis: Analyze Rust code with intelligent tooling.
cargo check
File Operations: Efficiently work with your codebase.
Shell Command Execution: Execute shell commands with full context handling.
cargo
commands with proper environment setupcargo install corrode-mcp
This will download the crate from crates.io, build it, and install the corrode-mcp
binary to your Cargo bin directory (usually ~/.cargo/bin/
). Ensure this directory is in your system's PATH.git clone <repository_url> # TODO: Add repository URL
cd corrode-mcp
cargo install --path .
corrode-mcp
is installed (see Installation section) and available in your system's PATH.claude_desktop_config.json
: Claude Desktop -> Settings
-> Developer
-> Edit Config
mcpServers
key (or merge it if mcpServers
already exists):{
"mcpServers": {
"corrode-mcp": {
"command": "corrode-mcp",
"args": ["--mcp"]
}
}
}
If you want to check MCP log, please use tail -n 20 -f ~/Library/Logs/Claude/mcp*.log
.
Here are some practical ways to leverage Corrode MCP with your Rust projects:
# Search for async runtime crates
> Search for crates related to async runtime
# Get detailed information about a specific version
> What are the features available in tokio 1.44.1?
# Check dependencies
> Show me the dependencies for serde_json 1.0
# Check for errors in your project
> Are there any compilation errors in my current project?
# Code structure understanding
> List all function signatures in the src directory
# Cargo operations
> Update my dependencies to the latest versions
# Create new components
> Create a new module for handling HTTP requests
# Explore project structure
> Draw an architecture diagram of this Rust project
# Quality improvements
> Analyze this code for potential performance improvements