ROBINHOOD CHAIN

Financial guardrails for AI agents on Robinhood.

Give agents money without giving them unlimited control.

AI AgentAgentPactRobinhood Chain

01 · DEFINE THE PACT

Define what your agent can do.

Set budgets, actions, assets, destinations, and approval rules. Every agent gets a Pact before it ever touches a wallet.

02 · ENFORCE EVERY ACTION

Every protected transaction is checked before execution.

0.02 USDG → Research APIALLOW

03 · STAY IN CONTROL

You hold the authority. Always.

  • Approve exceptional actions.
  • Freeze agents instantly.
  • Audit everything.

04 · DEVELOPER INTEGRATION

Most agents will reach AgentPact through MCP.

MCP
{
  "mcpServers": {
    "agentpact": {
      "url": "https://mcp.agentpact.dev"
    }
  }
}
TypeScript SDK
import { AgentPact } from "@agentpact-dev/sdk";

const pact = new AgentPact({ agentId, sessionKey });
await pact.pay({ amount: "2", asset: "USDG", destination });

Give your agent a Pact.

Start Building