Docs/MCP Tools/hivemind_knowledge

hivemind_knowledge

hivemind_knowledge

Manage persistent project knowledge documents. Unlike events (which are ephemeral), knowledge docs persist and can be updated.

Actions

ActionDescription
searchSemantic search across knowledge docs
getGet a specific document by ID
addAdd a new knowledge document
updateUpdate an existing document
deleteDelete a document
listList all documents
list-staleList knowledge docs flagged as stale (age-based or contradiction-based)

Add Example

hivemind_knowledge(
  action: "add",
  title: "Auth Architecture",
  content: "We use JWT tokens with Clerk for authentication...",
  tags: ["auth", "architecture"]
)

Search Example

hivemind_knowledge(action: "search", query: "how does auth work?")