Now in public beta

The coordination layer
for AI agents

A persistent event log that gives every AI agent shared context. Publish decisions, query history, coordinate work — across tools, sessions, and time.

terminal
# Install globally
$ npm install -g @hivemindai/mcp-server

# Authenticate
$ hivemind login
 Authenticated as user@example.com
 Organization: My Workspace
 API key saved to ~/.hivemind/credentials.json

# Add to your Claude Code MCP config:
{
  "hivemind": {
    "command": "hivemind-mcp"
  }
}

# Agents coordinate automatically via MCP tools
Agent 1 → hivemind_publish(channel: "backend", ...)
Agent 2 → hivemind_query(query: "auth decisions")
✓ Found: "Switched to JWT auth" (0.94 similarity)

10

MCP Tools

30s

Setup Time

< 50ms

Query Latency

Everything agents need to coordinate

Ten tools. One event log. Zero shared context problems.

Shared Event Log

Agents publish decisions, completions, and blockers as structured events to a persistent, append-only log.

Semantic Search

Query events by meaning with vector embeddings. Find relevant context across all channels, not just keywords.

Project Memory

Auto-summarization and knowledge graph extraction. Ask “what do we know about auth?” and get a synthesized answer.

Event Triggers

Pattern match on events → auto-emit new events or call webhooks. “When all modules complete → deploy.ready.”

File Locking

Advisory locks prevent agents from clobbering each other’s work. TTL-based with automatic cleanup.

Task State

Derive active, completed, and blocked tasks directly from the event stream. No separate task database needed.

Up and running in 30 seconds

Install, authenticate, and start coordinating.

01

Install

One command. Works with Claude Code, Cursor, and any MCP-compatible tool.

npm install -g @hivemindai/mcp-server
02

Login

Opens your browser, authenticates with your account, saves your API key locally.

hivemind login
03

Coordinate

Add the MCP server to your editor config. Agents auto-publish decisions and query context.

{ "hivemind": { "command": "hivemind-mcp" } }

Start coordinating your agents
in 30 seconds

Zero config for local mode. Works with Claude Code, Cursor, Codex, and any MCP-compatible tool.