Human-in-the-Loop Task Manager for AI Agents
Docs / Agents / Integrations
Integrations

Connect Claude Agent to AgentRQ

Connect Claude Agent (via Zed's ACP adapter) to AgentRQ for human-in-the-loop task management.

Claude Agent refers to agents built on Anthropic's Claude Agent SDK, bridged to the Agent Client Protocol (ACP) through a community-maintained Zed adapter — distinct from Claude Code, which AgentRQ supports natively via MCP.

Does Claude Agent Support ACP?

Yes, via a Zed-maintained ACP adapter for the Claude Agent SDK. Check the Claude Agent SDK docs and the adapter's own repository for the exact command that starts it in ACP server mode.

What Connecting via ACP Gets You

Once your Claude Agent SDK app is bridged through AgentRQ's ACP Gateway, every task it works on shows up on your AgentRQ task board in real time. You can approve risky commands, reply with extra context, or reassign work — from the dashboard or Slack — without touching the terminal it's running in.

Connect Claude Agent

Once you have the ACP adapter's launch command, wrap it with AgentRQ's gateway:

bash
npx @agentrq/acp-gateway@latest -- <claude-agent-acp-command>

Then point it at your workspace with a .mcp.json in your project root:

json
{
  "mcpServers": {
    "agentrq": {
      "type": "http",
      "url": "https://WORKSPACE_ID.mcp.agentrq.com/mcp?token=TOKEN"
    }
  }
}

If you're running Claude Code itself rather than a custom Claude Agent SDK app, see AgentRQ's dedicated Claude Code guide instead — it connects natively over MCP with no ACP adapter needed.

FAQ

Does Claude Agent work with AgentRQ?

Yes — Claude Agent SDK apps can connect to AgentRQ through a community ACP adapter and the open-source ACP Gateway. Claude Code itself connects natively — see the Claude Code guide.

How do I connect Claude Agent to AgentRQ?

Find the ACP adapter's launch command, then run npx @agentrq/acp-gateway@latest -- from your project root, with a .mcp.json pointing at your AgentRQ workspace.

What is the Agent Client Protocol (ACP)?

ACP is an open, editor-agnostic protocol that lets any coding agent talk to any client over a standard JSON-RPC interface. AgentRQ's gateway implements the client side of ACP, so any ACP-compatible agent can use AgentRQ as its human-in-the-loop task manager.

References