Any MCP Client

BrainBase works with any tool that supports the Model Context Protocol.

Known compatible clients

Beyond the providers with dedicated pages, BrainBase also works with:

  • Continue — MCP Server
  • Claude Desktop — MCP Server
  • Goose — MCP Server
  • Cline — MCP Server
  • Roo Code — MCP Server
  • Zed — MCP Server
  • Amp — MCP Server

Manual setup

If your MCP client isn't auto-detected by brainbase init, you can manually configure it. BrainBase's MCP server runs via stdio JSON-RPC:

bash
$ brainbase mcp

Point your MCP client to the brainbase mcp command as a stdio server. It exposes 7 tools via JSON-RPC:

Available tools

ToolParametersDescription
memory_searchquery: stringSearch with spreading activation
memory_contextmode: MAXIMUM|STANDARD|LIGHT|MINIMAL, topic?: stringFull context generation
memory_addcontent: string, type: fact|preference|decision|project|identity|skill|insight|task, importance?: numberStore knowledge
memory_status(none)Brain statistics
memory_relatedquery: stringDiscover connected memories
memory_remindmessage: string, trigger_words?: string[]Prospective memory
memory_process_messagemessage: string, role: user|assistantProcess message (called every turn)
Critical tool

memory_process_message should be called with every user message. This is how the brain learns. Without it, BrainBase can only read — it can't grow.