
Company News
AWS Security Hub Adds Socket for Supply Chain Security
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.
@booboo-brain/serve
Advanced tools
Query a Booboo snapshot over REST + MCP. In-memory index: search, neighbors, shortest-path, layer stats.
Query a Booboo snapshot over REST and MCP. One in-memory index
(BoobooIndex) powers both: search, neighbours, shortest-path, layer stats. Read-only.
booboo serve --snapshot my.booboo.json --port 8787
| Route | Returns |
|---|---|
GET /graph | meta + counts |
GET /stats | { nodes, links, byLayer } |
GET /search?q=&limit= | ranked nodes (exact > prefix > substring) |
GET /nodes?layer=&cluster=&type=&q=&limit=&offset= | { total, nodes } |
GET /nodes/:id | one node (404 if missing) |
GET /neighbors/:id?depth=&limit= | { center, nodes, links } |
GET /path/:from/:to | { path } (chain of nodes, or null) |
CORS is open, so a browser viewer can fetch a live graph directly.
booboo mcp --snapshot my.booboo.json
Speaks MCP over stdio. Point any client at it (Claude Desktop / Claude Code):
{ "mcpServers": { "booboo": { "command": "booboo", "args": ["mcp", "--snapshot", "/abs/path/my.booboo.json"] } } }
Tools: booboo_stats · booboo_search · booboo_node · booboo_neighbors · booboo_path.
import { BoobooIndex, loadSnapshot, createRestServer, runMcp } from "@booboo-brain/serve";
const ix = new BoobooIndex(loadSnapshot("my.booboo.json"));
ix.search("invoice"); // ranked nodes
ix.neighbors("dionisos", 2); // 2-hop neighbourhood
ix.path("a", "b"); // shortest path or null
createRestServer(ix).listen(8787);
BoobooIndex is pure (no Node/network deps), so it also runs in the browser.
FAQs
Query a Booboo snapshot over REST + MCP. In-memory index: search, neighbors, shortest-path, layer stats.
The npm package @booboo-brain/serve receives a total of 179 weekly downloads. As such, @booboo-brain/serve popularity was classified as not popular.
We found that @booboo-brain/serve demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.

Research
/Security News
Popular npm packages keyv and cacheable compromised.

Security News
A misconfiguration gave three Anthropic models internet access, and one, believing it was in a simulation, shipped a credential-stealing package to PyPI.