Build Rust CLIs that AI agents can discover, call, and learn from. No MCP server needed.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"agent-cli-framework": {
"command": "cargo",
"args": [
"run",
"--",
"agent-cli-framework"
]
}
}
}
Run in terminal:
claude mcp add agent-cli-framework cargo run -- agent-cli-framework
Add to .cursor/mcp.json:
{
"mcpServers": {
"agent-cli-framework": {
"command": "cargo",
"args": [
"run",
"--",
"agent-cli-framework"
]
}
}
}