Developers
Quickstart
Catch one agent up, remember an outcome, and retrieve it from another.
Connect
Point an MCP host at:
https://mcp.hivebase.ai/mcpFor hosts that accept the server root, https://mcp.hivebase.ai is an alias.
Complete browser consent with the default Catch me up capability.
Ask a real company question
context.brief({ query: "What changed in our launch positioning?" })The result is visibility-scoped and includes resolvable source references. Use
context.search when you need granular evidence rather than a capsule.
Enable writeback
Reconnect or update consent and explicitly enable Remember what we decide. Then preserve one durable outcome:
context.remember({
idempotency_key: "launch-session-2026-07-29",
kind: "commitment",
title: "Launch context continuity first",
content: "Keep task execution out of the default Platform API launch.",
topics: ["platform-api", "launch"]
})Retain the returned receipt_id. A successful inline write normally returns
state: "applied"; use receipt.get if it is still accepted or processing.
Continue in another agent
Open another host and call:
context.sync({})Persist the returned opaque cursor unchanged. Future calls with that cursor return relevant knowledge and decision changes since the prior session.
For an “If I disappear” continuity artifact:
context.brief({ lens: "handoff" })