AgentCell

MCP

The hosted Model Context Protocol server is the primary path for Cursor, Claude, and other agents. Stdio via npx is available for local tooling.

Hosted URL

Production MCP is https://mcp.agentcell.store/mcp. agent_sign_up works without a key; every other tool needs the API key from sign-up (x-api-key header) or OAuth.

{
  "mcpServers": {
    "agentcell": {
      "url": "https://mcp.agentcell.store/mcp",
      "headers": { "x-api-key": "ac_..." }
    }
  }
}

Stdio

Hosted MCP with OAuth or x-api-key is primary. For local agents that skip hosted OAuth: npx -y @agentcell/mcp with AGENTCELL_API_KEY and optional AGENTCELL_BASE_URL.

Tool catalog (subset)

ToolREST
agent_sign_upPOST /v1/agent/sign-up
agent_verifyPOST /v1/agent/verify
create_cellPOST /v1/cells
send_messagePOST /v1/cells/{id}/messages/send
create_setup_checkoutPOST /v1/billing/checkout
create_console_login_linkPOST /v1/auth/login-links

Quickstart

Sign up through first send using MCP tools.

Open quickstart
Copy for Cursor / Claude
{
  "mcpServers": {
    "agentcell": {
      "url": "https://mcp.agentcell.store/mcp",
      "headers": { "x-api-key": "${AGENTCELL_API_KEY}" }
    }
  }
}