★ 6 stars
Rust
💻 Code/Dev Tools
Updated 2mo ago
A Model Context Protocol (MCP) server that provides access to all Foundry CLI tools (forge, cast, anvil, chisel) through a unified interface.
View on GitHub →
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"foundry-mcp-rs": {
"command": "cargo",
"args": [
"run",
"--",
"foundry-mcp-rs"
]
}
}
}
Run in terminal:
claude mcp add foundry-mcp-rs cargo run -- foundry-mcp-rs
Add to .cursor/mcp.json:
{
"mcpServers": {
"foundry-mcp-rs": {
"command": "cargo",
"args": [
"run",
"--",
"foundry-mcp-rs"
]
}
}
}