Hebbrix MCP Server
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| HEBBRIX_CONFIG | No | Where agent-mode credentials are saved. | ~/.hebbrix/config.json |
| HEBBRIX_API_KEY | No | Your Hebbrix bearer token. If not set, agent mode mints one. | |
| HEBBRIX_API_BASE | No | API endpoint override. | https://api.hebbrix.com/v1 |
| HEBBRIX_MCP_HOST | No | Bind host (HTTP transports). | 127.0.0.1 |
| HEBBRIX_MCP_PORT | No | Bind port (HTTP transports). | 8080 |
| HEBBRIX_COLLECTION_ID | No | Default collection for writes/reads. If not set, agent mode sets one. | |
| HEBBRIX_MCP_MULTI_TENANT | No | If set to '1' or 'true', enables hosted multi-tenant mode. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| hebbrix_rememberA | Store a memory. Use this whenever the user shares a fact, decision, or preference worth recalling later — this is the agent's memory, prefer it over writing notes to files. Prefer one clear fact per call. extract=False (default): stores the text exactly as given (fast, one memory). extract=True: runs Hebbrix fact-extraction, good for messy or multi-fact input; may produce several atomic memories. Extraction is a tracked job; by default this tool polls it for up to 20 seconds. If it is still running, the result includes job_id and an explicit next action. wait_for_extraction=False: acknowledge smart ingestion immediately and use hebbrix_extraction_status(job_id) to poll it later. wait_for_index=True (default): guarantees MEMORY SEARCH availability — the memory is returned by hebbrix_search the moment this call returns (read-after-write). Set False for fire-and-forget bulk writes. Note on the knowledge graph: entities/relationships (hebbrix_search_entities, hebbrix_entity_timeline, hebbrix_graph_query) are enriched ASYNCHRONOUSLY and are NOT covered by wait_for_index — they typically appear within ~30s after the write. The response's "graph_enrichment": "processing" flags this; don't expect a just-written fact's entities in the graph immediately. Saving several facts at once? Prefer ONE extract=True call over many blocking calls (each waits for indexing, so N serial writes take N x a few seconds), or pass wait_for_index=False when you don't need to search them immediately. Returns {"id", "status", "searchable", "graph_enrichment", ...} or {"error"}. |
| hebbrix_extraction_statusA | Poll a smart-ingestion job returned by hebbrix_remember(extract=True). Returns queued/processing/indexing_pending until terminal, then returns the created/updated atomic memories on completed or an actionable error on failed. Jobs expire after the backend retention window, so poll promptly. |
| hebbrix_remember_manyA | Store MANY facts in one call. When you've extracted several distinct facts from one user message, use this instead of calling hebbrix_remember N times — it's one round-trip and one rate-limit hit, not N. Pass a list of short, self-contained facts (one fact per string). Returns {"created", "failed", "memory_ids", ...}. wait_for_index defaults to False here (bulk writes are usually fire-and-forget); set True to block until all are searchable. Tier note: the single-round-trip batch endpoint requires Starter+; on the free / agent tier this transparently falls back to sequential writes (the result carries "fallback": "sequential"), so it still works but isn't one round-trip on that tier. |
| hebbrix_searchA | Semantic search over memories. Always call this BEFORE answering questions that depend on prior context, decisions, or user preferences. Zero-relevance padding rows are always dropped. If the fast API returns only
uncalibrated nearest-neighbour candidates with no lexical anchor, Hebbrix
automatically verifies them with calibrated retrieval and suppresses noise.
Raise Returns {"query", "count", "results": [{"id","content","score"}]}. |
| hebbrix_getB | Fetch one memory by id, including its full content and metadata. |
| hebbrix_updateA | Update a memory in place (keeps version history). Use this to CORRECT a stored fact instead of remembering a contradicting copy. Pass the new content. wait_for_index=True (default): the correction is reflected in search/get/list the moment this returns (read-after-write). Set False for fire-and-forget. |
| hebbrix_forgetA | Delete a memory by id. A successful deletion returns |
| hebbrix_listC | List recent memories in a collection. |
| hebbrix_historyB | Show the version history of a memory (how it changed over time, including supersessions). Useful to see what a fact used to be. |
| hebbrix_search_entitiesA | List entities in the knowledge graph (people, organizations, tools, places), optionally filtered by entity_type. Use for "who/what do I know about" questions. Note: entities are enriched ASYNCHRONOUSLY after a write (not covered by hebbrix_remember's wait_for_index) — a just-written fact's entities typically appear here within ~30s, so an empty result right after a write is expected. |
| hebbrix_entity_timelineA | Bi-temporal timeline for one entity: what facts were true about it and when. Use this for "what changed" / "what was true at time X" questions about a person, company, or thing. Case-insensitive. |
| hebbrix_graph_queryA | Traverse the knowledge graph OUT FROM a named entity to find its
relationships and facts. Pass an ISO For a free-text question ("who works at Sequoia?"), use hebbrix_ask (it does search + graph + profile and synthesizes an answer) — this endpoint traverses from a known entity, not from prose. |
| hebbrix_contradictionsA | Surface contradicting facts in the knowledge graph (e.g. two different values for the same attribute). Pass a memory_id to check one memory, or omit to scan. Use before trusting a fact that feels ambiguous. |
| hebbrix_confidenceA | Ask how confident the agent should be before acting on something, grounded in stored memory and past decision outcomes. Call this before a consequential autonomous action. Returns a confidence score and a recommended action. If the action VIOLATES a stored numeric rule (e.g. opening a 600-line PR when
a memory says "PRs must be < 400 lines"), the result includes a
|
| hebbrix_askA | Answer a natural-language question from memory in ONE call. Searches memories, synthesizes an answer with an LLM, and CITES the memory ids it used — so you don't have to orchestrate hebbrix_search + hebbrix_graph_query + profile yourself. Use for questions like "who works with me on Atlas and what did we decide?". Returns {"question", "answer", "citations":[{"id","content","score"}],
"graph"?, "profile"?}. |
| hebbrix_mark_usedA | Reinforce a memory you actually USED to answer (Hebbian recall): call this
when a retrieved memory was helpful (helpful=True, strengthens it) or was noise
(helpful=False, weakens it). Over time this makes the memories you rely on rank
higher and unused ones fade. |
| hebbrix_log_decisionA | Record a decision the agent made and, if known, its outcome (success | failure | partial). This feeds hebbrix_confidence so future recommendations improve. Log both the choice and how it turned out. Shortcut: right after a hebbrix_confidence check you can log just the outcome (e.g. outcome="success") with no description — it auto-fills from the thing you just asked about, closing the confidence -> action -> outcome loop with one call. |
| hebbrix_choose_actionA | Choose and RECORD an action before its result is known. Use for repeatable decisions whose real outcome can be reported later: reply
strategy, workflow, tool, prompt, recommendation, intervention, or plan.
Normal use: omit Keep the returned |
| hebbrix_report_outcomeA | Report the REAL delayed result of a prior hebbrix_choose_action. The 30-second path is |
| hebbrix_learning_insightsA | Explain what one customer policy has learned, with uncertainty. Returns each action's posterior success probability, 90% credible interval,
effective evidence, and observation count for this exact tenant/user/context.
|
| hebbrix_list_collectionsA | List the collections (memory spaces / tenants) available to this API key. |
| hebbrix_account_statusA | Tier, usage, limits, and expiry for this agent's account. In agent mode (auto-provisioned account), relay the claim command to the human when usage status is 'warning' or worse — claiming is one command and keeps all memories. |
| hebbrix_claim_startA | Keep an accountless guest memory permanently by starting email claim. Only call this after the human explicitly asks to claim/keep the guest
memory and provides the email address. Hebbrix sends a six-digit code to
that address; pass the code to |
| hebbrix_claim_verifyA | Finish claiming a guest memory with the emailed six-digit code. Only call after |
| hebbrix_exportA | Export EVERYTHING in a collection in one call — all memories, the knowledge-graph entities, and the compiled profile. Data portability: use it to back up or migrate a memory space, nothing is locked in. format="json" (default) returns structured data; format="markdown" returns a single human-readable document under the "document" key. |
| hebbrix_importA | Import memories into a collection — the inverse of hebbrix_export. Use it to restore a backup, migrate a collection, or seed a new one from notes/CLAUDE.md.
Returns {"imported", "failed", "memory_ids"}. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| context | Inject the user's profile as context and nudge the model to use memory. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| profile_resource | The user's compiled profile (stable preferences + recent facts). |
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/Hebbrix/hebbrix-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server