@littlebigbrain/mcp
The @littlebigbrain/mcp server provides 11 tools for searching, querying, writing, and managing a knowledge graph from AI clients like Claude, Cursor, or Codex.
Read / Retrieval
lbb_search— Hybrid (BM25 + vector) natural-language retrieval with multi-query fusion and optional graph path following from seed entities.lbb_ask— Ask a natural-language question and get a grounded, cited answer synthesized from the graph, or retrieve grounding evidence only.lbb_decode— Given two entity names, identify the relation between them using type-signature narrowing and a fine-tuned model.lbb_ground— Resolve free text to real vocabulary items (types, relations, properties) via autocomplete, embedding/lexical snap, or a full groundability audit.lbb_inspect— Browse ontology, schema, SHACL conformance, inference rules, entity metadata, edges, state, history, provenance, and perform graph traversals.lbb_query— Run SPARQL queries, structured analytics (filters, aggregations, grouping), SHACL validation, inference, and retrieval-premise analysis.
Write / Mutation
lbb_commit— Write triplets (edges), typed scalar properties, and embeddings; retract facts; or label search results for relevance feedback.lbb_observe— Store conversation episodes and commit extracted facts onto an isolated branch, with optional auto-merge after SHACL validation.lbb_configure— Define or evolve ontologies (add/rename/remove entity types, relations, properties), publish SHACL shape bundles, and manage inference rules.lbb_branch— Create isolation branches (fork) and perform validated merges (replay + SHACL check) back onto the parent branch.lbb_index— Rebuild or refresh BM25, vector, and adjacency indexes so newly committed facts become searchable.
All tools support paging, snapshot pinning (as-of / commit sequence), detail levels, and idempotent writes. The server can be deployed via a hosted OAuth endpoint, as a local stdio process, or embedded as an HTTP server within a TypeScript application.
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., "@@littlebigbrain/mcpsearch for entities related to 'Project Apollo'"
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.
@littlebigbrain/mcp
Ten task-shaped MCP tools that let Claude, Cursor, Codex, or any MCP client search, query, and write a Little Big Brain graph. Ships two ways: a hosted endpoint with OAuth sign-in, and a local stdio server.
Hosted (OAuth) — recommended
The client opens WorkOS sign-in; your machine never stores a Little Big Brain key. Point it at your stack:
{
"mcpServers": {
"lbb": {
"url": "https://mcp.littlebigbrain.com/mcp/<stack-slug>"
}
}
}Codex sends the URL as an OAuth resource, so use the origin plus a stack header instead:
{
"mcpServers": {
"lbb": {
"type": "http",
"url": "https://mcp.littlebigbrain.com",
"headers": { "X-LBB-Stack": "<stack-slug>" }
}
}
}Related MCP server: Neo4j GraphRAG MCP Server
Local (stdio)
Run against any data-plane endpoint with a stack API key:
{
"mcpServers": {
"lbb": {
"command": "npx",
"args": ["-y", "@littlebigbrain/mcp"],
"env": {
"LBB_BASE_URL": "https://0abc1def--production.db.eu.littlebigbrain.com",
"LBB_API_KEY": "lbb_sk_live_..."
}
}
}
}Set LBB_GRAPH or LBB_BRANCH to target a scope other than main.
LBB_BASE_URL has no hosted default: copy endpoint_url from the stack's
Connect page. The MCP process exits with a configuration error when it is
missing.
Tools
Tool | Use it for |
| hybrid retrieval, multi-query fusion, optional path following |
| constrained relation decoding |
| vocabulary completion and resolution |
| ontology, schema, entity, state, history, provenance, traversal |
| SPARQL and structured analytics |
| facts, properties, and embeddings |
| conversation episodes plus reviewed extraction |
| isolation branches and validated merge |
| shadow evaluation and training datasets |
| ontology definition and atomic schema publication |
Read tools return compact structured envelopes by default — use detail, row_limit, and returned cursors to page without silently truncating. Write tools derive an idempotency key unless you provide one.
Embed the server
For self-hosting behind your own auth, the package also serves the tools over HTTP:
import { createMcpHttpServer } from "@littlebigbrain/mcp";
createMcpHttpServer({
baseUrl: "https://0abc1def--production.db.eu.littlebigbrain.com",
mcpPath: "/mcp",
allowedHosts: ["127.0.0.1", "localhost", "::1"],
}).listen(8080, "127.0.0.1");The embedded server passes a key bearer to the data plane; the hosted endpoint's OAuth and ownership layer is served separately by the Little Big Brain API.
Full tool schemas and examples: docs.littlebigbrain.com/sdks/mcp.
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
- Flicense-qualityDmaintenanceAn MCP server that enables graph database interactions with Neo4j, allowing users to access and manipulate graph data through natural language commands.
- AlicenseAqualityCmaintenanceAn MCP server that enables LLMs to perform semantic and fulltext searches within Neo4j while executing complex, search-augmented Cypher queries for GraphRAG applications. It provides tools for database schema discovery and supports multi-provider embeddings to facilitate advanced graph traversals.52MIT
- AlicenseAqualityDmaintenanceAn MCP server that enables AI-powered exploration of RDF data and SPARQL querying via RDF4J. It provides tools for executing queries, searching knowledge graph resources, and retrieving schema summaries.131MIT
- Alicense-qualityDmaintenanceAn MCP server that builds a knowledge graph from code and text documents, enabling Q\&A and implementation planning via tools like graph_create, graph_plan, and graph_query.7MIT
Related MCP Connectors
MCP server for generating rough-draft project plans from natural-language prompts.
GibsonAI MCP server: manage your databases with natural language
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
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/littlebigbrains/lbb-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server