MCP Server
Connect any MCP-compatible AI agent to Hebbrix memory, temporal graph, reasoning, and Outcome Memory tools through one hosted endpoint.
Quick setup
Add the hosted Hebbrix endpoint to your client's MCP server configuration, save, and reconnect. Guest access does not require an account, API key, local process, or package installation.
{
"mcpServers": {
"hebbrix": {
"url": "https://mcp.hebbrix.com/mcp"
}
}
}https://mcp.hebbrix.com/mcp as the URL.Connection details
| Setting | Value |
|---|---|
| Server URL | https://mcp.hebbrix.com/mcp |
| Transport | Hosted HTTPS MCP |
| Guest authentication | Not required |
| MCP release companion | v0.5.12 |
| Tool surface | Discover the current tool list by connecting your MCP client |
What the MCP server exposes
The tool surface covers memory, temporal graph, grounded reasoning, procedures, account workflows, and learning from explicitly reported outcomes. Representative tools include:
hebbrix_rememberstores durable memory from an agent interaction.hebbrix_askanswers using memory and temporal graph evidence.hebbrix_graph_queryqueries entities, relationships, timelines, and current truth.hebbrix_graph_statusreports whether asynchronous graph enrichment is processing, failed, ready, or temporarily unreadable. Readiness is based on durable projection acknowledgements. Its related-memory count is not an entity-relationship count: zero related memories does not mean there are no extracted edges.hebbrix_choose_actionrecords a decision receipt and chooses from measured outcome evidence.
Grounding and safety contract
Retrieval tools return only evidence that the API marked as grounded. Each verified response includes the grounding state, evidence memory IDs, and a claim receipt. If the upstream response is malformed, missing its safety envelope, degraded, or ungrounded, the hosted adapter fails closed instead of presenting related text as an answer.
When GraphRAG synthesis abstains but authoritative search has verified evidence,hebbrix_ask returns it with synthesis_status: "retrieval_only". It does not silently discard recall or misrepresent retrieved text as model synthesis. Failed tool calls use MCP isError=true consistently over hosted HTTP and local stdio.
MCP responses expose request IDs, backend builds, grounding versions, and cache-path diagnostics. Ask includes separate reasoning and retrieval diagnostics when fallback is needed. Failure categories distinguish unknown facts from unavailable verification, service failures, quota limits, and malformed evidence receipts. These diagnostics contain no credentials or memory content; they do not bypass the evidence checks. The companion API reports claim-grounding-v36.
wait_for_index=true, waiting is bounded: check the returnedsearchable receipt and poll hebbrix_get when it is false. Do not repeat an accepted write to make it searchable.Verify the connection
- Reconnect your client and confirm that the Hebbrix tools appear.
- Ask the agent to remember a distinctive, non-sensitive fact.
- Start a fresh conversation and ask the agent to retrieve that fact.
- For graph validation, store two related facts and query their relationship or timeline.
Guest and account-scoped use
Guest access is the quickest way to evaluate the hosted MCP connection. Applications that need account-owned collections, explicit tenant scoping, API administration, billing, or production data controls should use an authenticated Hebbrix account and follow the authentication guide.
Coding-agent workflows
For code-change history, previous-error lookup, fix tracking, and the dedicated/v1/coding-agent/* API surface, continue to the coding-agent guide.