Bolor Brain MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Bolor Brain MCPWhy is our API returning 500 errors under load?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Bolor Brain MCP
Pure intelligence for Claude Code. Reasoning, memory, and learning -- nothing else.
What Is This?
Bolor Brain is an MCP server that gives Claude Code a brain: structured reasoning, persistent memory, and learning from experience.
User --> Claude Code (Gateway + Executor)
|
+----+----+
Bolor Brain NSAF
(MCP) (MCP)
THINK EVOLVEClaude Code = Gateway + tool execution + sessions + permissions
Bolor Brain = Reasoning engines + memory + learning + persistence
NSAF = Strategy evolution + self-improvement (separate MCP server)
Bolor Brain does NOT execute anything. No file ops, no scheduling, no autonomous loop. Claude Code already does all of that. Bolor Brain only thinks.
Related MCP server: Melchizedek
Quick Start
1. Install
git clone https://github.com/photoxpedia/bolor-brain-mcp.git
cd bolor-brain-mcp
pip install -e .2. Configure Claude Code
Add to ~/.claude/mcp-config.json:
{
"mcpServers": {
"bolor-brain": {
"command": "python",
"args": ["-m", "mcp_server"],
"cwd": "/path/to/bolor-brain-mcp"
}
}
}3. Use
/reason Why is Python popular for data science?
/debug API returns 500 errors under load
/decide PostgreSQL or MongoDB for our app?
/learn-from We fixed the memory leak by increasing connection poolMCP Tools (11)
Reasoning (6)
Tool | What It Does |
| Auto-selects best reasoning approach for any query |
| Forward/backward chaining with facts and rules |
| Graph traversal, path finding, relationship exploration |
| Find similar past problems and their solutions |
| Generate and test hypotheses from observations |
| Cross-domain pattern transfer (atom ~ solar system) |
Memory (4)
Tool | What It Does |
| Store a case, fact, node, or edge |
| Retrieve matching cases or facts |
| Store problem/solution/outcome (shortcut for remember) |
| Delete a case or fact by ID |
Utility (1)
Tool | What It Does |
| Cases, facts, nodes, edges count |
Skills (6)
Skill | When To Use |
| Deep analysis of any complex problem |
| Systematic bug hunting with hypothesis testing |
| Evidence-based technical decisions |
| Store experiences for future use |
| NSAF evolution integration (requires NSAF MCP) |
| Meta-orchestration combining Bolor Brain + NSAF |
Persistence
Brain state persists to ~/.bolor-brain/ as JSON:
~/.bolor-brain/
cases.json # Problem -> solution -> outcome
facts.json # Symbolic reasoning facts
knowledge.json # Knowledge graph (nodes + edges)Knowledge compounds over time. Solve a bug once, recall the solution instantly next time.
With NSAF
Add NSAF to get evolution capabilities:
{
"mcpServers": {
"bolor-brain": {
"command": "python",
"args": ["-m", "mcp_server"],
"cwd": "/path/to/bolor-brain-mcp"
},
"nsaf": {
"command": "python3",
"args": ["nsaf_mcp_server.py"],
"cwd": "/path/to/nsaf",
"env": { "PYTHONPATH": "/path/to/nsaf" }
}
}
}Together: Bolor Brain reasons about WHAT to do. NSAF evolves HOW to do it better. Claude Code executes.
See skills/nsaf.md and skills/orchestrate.md for combined workflows.
Testing
pytest tests/ -v
# 376 testsProject Structure
mcp_server.py # MCP server (11 tools)
persistence.py # JSON persistence to ~/.bolor-brain/
modules/
config.py # Configuration
reasoning_engines/
symbolic_reasoner.py # Forward/backward chaining
knowledge_graph.py # Graph-based knowledge
case_based_reasoner.py # 4R cycle (retrieve, reuse, revise, retain)
hypothesis_engine.py # Hypothesis generation and testing
analogical_reasoner.py # Cross-domain pattern transfer
hybrid_reasoner.py # Orchestrates all 5 engines
skills/ # Claude Code skills
reason.md, debug.md, decide.md, learn-from.md, nsaf.md, orchestrate.md
tests/ # 376 tests
AGENT_GUARDRAILS.md # Production safety guidelinesAuthor
Bolorerdene Bundgaa
Website: bolor.me
Email: bolor@ariunbolor.org
License
MIT -- see LICENSE
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseCqualityDmaintenanceAn MCP server that enables persistent memory, structured thinking sessions, and project-based knowledge management for Claude. It includes specialized coding tools for package discovery and reinvention prevention by validating code against existing libraries and APIs.Last updated173
- AlicenseAqualityBmaintenancePersistent memory for Claude Code. Automatically indexes every conversation and provides production-grade hybrid search (BM25 + vectors + reranker) via MCP tools. 100% local, zero config, zero API keys, zero invoice.Last updated16437MIT
- AlicenseCqualityAmaintenanceStores and recalls Claude Code session content as persistent memory, auto-injects relevant prior decisions and lessons at session start, and exposes 33 MCP tools for memory, knowledge-graph navigation, and cognitive profiling — backed by 41 neuroscience papers and 97.8% R@10 on LongMemEval.Last updated40668MIT
- Alicense-qualityFmaintenanceExtended Memory MCP is a Model Context Protocol (MCP) tool that provides cross-session memory storage for Claude Desktop app.Last updated17MIT
Related MCP Connectors
Your memory, everywhere AI goes. Build knowledge once, access it via MCP anywhere.
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Shared long-term memory vault for AI agents with 20 MCP tools.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/photoxpedia/bolor-brain-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server