Docs/MCP Tools/hivemind_handoff

hivemind_handoff

hivemind_handoff

Manage agent-to-agent handoffs — pass work from one agent to another with full context.

Actions

ActionDescription
requestRequest a handoff to another agent
listList pending handoff requests
acceptAccept a handoff
rejectReject a handoff
statusCheck handoff status

Request Example

hivemind_handoff(
  action: "request",
  to_agent: "cursor-agent",
  description: "Auth refactor is done. Need frontend integration.",
  context: {
    files_changed: ["src/auth.ts", "src/middleware.ts"],
    decisions: ["Using JWT with 15min expiry"],
    next_steps: ["Update login form", "Add token refresh"]
  }
)

Accept Example

hivemind_handoff(action: "accept", handoff_id: "ho_abc123")

List Pending

hivemind_handoff(action: "list", status: "pending")

Handoffs preserve context across agent boundaries. The receiving agent gets the full context of what was done, what was decided, and what needs to happen next.