Fast local MCP server that routes each turn to the right agents, skills, rules, and memory under a token budget. Rust brain for Cursor.
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-brain": {
"command": "cargo",
"args": [
"run",
"--",
"agent-brain"
]
}
}
}
Run in terminal:
claude mcp add agent-brain cargo run -- agent-brain
Add to .cursor/mcp.json:
{
"mcpServers": {
"agent-brain": {
"command": "cargo",
"args": [
"run",
"--",
"agent-brain"
]
}
}
}