Booboo MCP Server

Query your AI system's wiring, knowledge, memory, agents and crons as one rooted graph over MCP.

Remote serverstreamable-http

What is the Booboo MCP server?

Query your AI system's wiring, knowledge, memory, agents and crons as one rooted graph over MCP. That is what the booboo mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

Named after a dachshund who never forgets where the treats are buried. Fitting, because Booboo is about exactly that: memory and recall — seeing the whole system at once, fetching what's buried, never losing the thread.

The tools it exposes

The server publishes 8 tools. What each one is for:

  • booboo_stats — Node/link counts for the whole graph, broken down by layer
  • booboo_count — Counts alone, without pulling the payload — use when sizing a query
  • booboo_search — Search nodes by label or id (ranked: exact > prefix > substring). Use this first to find a node's id
  • booboo_node — Fetch a single node (all fields + data) by its exact id
  • booboo_neighbors — The neighbourhood around a node: connected nodes + links out to depth hops
  • booboo_path — Shortest path (chain of nodes) between two node ids; null if unreachable
  • booboo_rememberWrite a durable memory — one atomic fact, tied to an agent. Appended to the journal beside the snapshot; queryable the same session, survives
  • booboo_reportWrite a report — what an agent just closed. Lands on the panel's Reports timeline

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

How it compares

Among the knowledge and memory options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Booboo's toolset — booboo_stats, booboo_count, booboo_search and 5 more — is a fair guide to whether it matches your workflow. It is maintained by jessedu29260-netizen; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Booboo's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
booboo_statsNode/link counts for the whole graph, broken down by layer.
booboo_countCounts alone, without pulling the payload — use when sizing a query.
booboo_searchSearch nodes by label or id (ranked: exact > prefix > substring). Use this first to find a node's id.
booboo_nodeFetch a single node (all fields + data) by its exact id.
booboo_neighborsThe neighbourhood around a node: connected nodes + links out to depth hops.
booboo_pathShortest path (chain of nodes) between two node ids; null if unreachable.
booboo_remember**Write** a durable memory — one atomic fact, tied to an agent. Appended to the journal beside the snapshot; queryable the same session, survives every rebuild.
booboo_report**Write** a report — what an agent just closed. Lands on the panel's Reports timeline.

How to install the Booboo MCP server

{
  "mcpServers": {
    "booboo": {
      "command": "npx",
      "args": ["-y", "@booboo-brain/cli"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use Booboo to booboo stats.
  • Use Booboo to booboo count.
  • Use Booboo to booboo search.

Frequently asked questions

It connects Booboo to MCP-compatible AI assistants such as Claude and Cursor, exposing 8 tools (booboo_stats, booboo_count, booboo_search, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Booboo directly.