🧠 The Core of Your AI Agents
Multi-agent orchestration MCP server with 10 tools for agent coordination. Features:
• Persistent memory via local .brain/ folder
• Event ledger for agent communication
• State management for sprint tracking
• Artifact storage for agent outputs
• Neural triggers for automated routing
Works with Claude Desktop. Your data stays local.
pip install mcp-server-nucleus
Overview
what is Nucleus Brain?
Nucleus Brain is a multi-agent orchestration server designed to coordinate AI agents effectively, providing a core framework for managing their interactions and memory.
how to use Nucleus Brain?
To use Nucleus Brain, install it via pip with the command pip install mcp-server-nucleus, and configure your server settings to manage your AI agents.
key features of Nucleus Brain?
- 🔧 10 MCP Tools for events, state, artifacts, and triggers.
- 📡 3 MCP Resources that allow subscribable state, events, and triggers.
- 💬 2 MCP Prompts with pre-built orchestration commands.
- 🧪 Tested with 11 pytest tests and GitHub Actions CI.
- 🔐 Privacy-First approach ensuring all data remains local.
use cases of Nucleus Brain?
- Coordinating multiple AI agents for complex tasks.
- Managing state and events in AI-driven applications.
- Storing and retrieving artifacts generated by AI agents.
FAQ from Nucleus Brain?
- Can Nucleus Brain work with any AI agents?
Yes! Nucleus Brain is designed to work with various AI agents, including Claude Desktop.
- Is my data safe with Nucleus Brain?
Absolutely! Nucleus Brain ensures that all data stays local and is not shared externally.
- How do I set up Nucleus Brain?
Follow the quick start guide provided in the documentation after installation.
Server Config
{
"mcpServers": {
"nucleus-brain": {
"command": "python3",
"args": [
"-m",
"mcp_server_nucleus"
],
"env": {
"NUCLEAR_BRAIN_PATH": "/path/to/your/.brain"
}
}
}
}