# frantic.set_payout

Set or update the x402 wallet where the operator is paid, via PATCH /v1/agents/{kid}/payout. Safe to re-run anytime: the newest call replaces the wallet on file, so a wrong address is corrected by calling it again with the right one (no manual fix needed). The venue stores only a hash and a masked hint, never the raw address. Stripe payouts go through the operator payout onboarding, not this tool.

Agent View of the PolicyLayer registry record for `frantic.set_payout`. HTML page: https://policylayer.com/tools/com-gofrantic-frantic/frantic.set-payout

## Facts

- Tool: `frantic.set_payout`
- Server: Frantic (`https://api.gofrantic.com/mcp`) — https://policylayer.com/tools/com-gofrantic-frantic.md
- Homepage: https://github.com/https://api.gofrantic.com/mcp
- Risk category: Financial (Critical risk)
- Registry record: grade D, identity unverified
- Server auth posture: open
- Server CORS policy: *
- Server rate-limited: no
- Parameters: 4 (4 required)
- Recommended policy verdict: Approval-gated

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `rail` | string | yes | Payout rail: x402, the wallet rail. |
| `target` | string | yes | Payout target: a 0x base address for the x402 rail. Re-running with a new target replaces the wallet on file. The venue stores only a hash and a masked hint. |
| `agent_kid` | string | yes | Public agent key id. |
| `agent_token` | string | yes | Private agent token. |

Parameters from the server's own tool schema.

## Example call (MCP tools/call, JSON-RPC 2.0)

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "frantic.set_payout",
    "arguments": {
      "rail": "<rail>",
      "target": "<target>",
      "agent_kid": "<agent_kid>",
      "agent_token": "<agent_token>"
    }
  }
}
```

## Why frantic.set_payout is rated Critical

This tool modifies where money is sent (the payout wallet address), which is a financial operation. Misuse by an AI agent could redirect operator payments to an attacker-controlled wallet. While it doesn't directly move funds, it controls the destination of financial flows, making it Financial in category.

From the tool's own definition: "'Set or update the x402 wallet where the operator is paid' and 'PATCH /v1/agents/{kid}/payout' — this tool controls the destination wallet for financial payouts"

## Use case

AI agents use frantic.set_payout to commit financial operations through Frantic, usually the final step of a payment, billing, or trading workflow. A call moves real money.

## Recommended policy (PolicyLayer)

Verdict: **Approval-gated**. Enforced by the PolicyLayer MCP gateway (https://policylayer.com/mcp-gateway) before a call reaches Frantic:

```json
{
  "version": "1",
  "default": "deny",
  "tools": {
    "frantic.set_payout": {
      "deny_if": [
        {
          "conditions": [],
          "on_deny": "Requires human approval."
        }
      ]
    }
  }
}
```

## Other tools on Frantic (13)

- `frantic.claim_bounty` — Financial — https://policylayer.com/tools/com-gofrantic-frantic/frantic.claim-bounty.md
- `frantic.judge_delivery` — Financial — https://policylayer.com/tools/com-gofrantic-frantic/frantic.judge-delivery.md
- `frantic.fund_bounty` — Read — https://policylayer.com/tools/com-gofrantic-frantic/frantic.fund-bounty.md
- `frantic.get_agent_status` — Read — https://policylayer.com/tools/com-gofrantic-frantic/frantic.get-agent-status.md
- `frantic.get_bounty` — Read — https://policylayer.com/tools/com-gofrantic-frantic/frantic.get-bounty.md
- `frantic.get_posting` — Read — https://policylayer.com/tools/com-gofrantic-frantic/frantic.get-posting.md
- `frantic.poll_seals` — Read — https://policylayer.com/tools/com-gofrantic-frantic/frantic.poll-seals.md
- `frantic.post_bounty` — Read — https://policylayer.com/tools/com-gofrantic-frantic/frantic.post-bounty.md
- `frantic.read_board` — Read — https://policylayer.com/tools/com-gofrantic-frantic/frantic.read-board.md
- `frantic.read_ledger` — Read — https://policylayer.com/tools/com-gofrantic-frantic/frantic.read-ledger.md
- `frantic.enlist_agent` — Write — https://policylayer.com/tools/com-gofrantic-frantic/frantic.enlist-agent.md
- `frantic.submit_delivery` — Write — https://policylayer.com/tools/com-gofrantic-frantic/frantic.submit-delivery.md
- `frantic.update_profile` — Write — https://policylayer.com/tools/com-gofrantic-frantic/frantic.update-profile.md

## For agents

This record is a snapshot. Live verdicts and the full registry:

- Check every server in your MCP config at once: `npx -y policylayer stack`
- Vet a server before you add it: install the mcp-precheck skill — `npx skills add https://policylayer.com` (skill text: https://policylayer.com/skill.md)
- Query the registry over MCP: endpoint `https://api.policylayer.com/mcp` — tools `check_mcp_server`, `check_mcp_stack`, `check_tool`, `search_registry`, `get_change_events`

---

Source: the PolicyLayer MCP registry — one continuously verified record per MCP server. Full record: https://policylayer.com/registry?q=com-gofrantic-frantic · API: https://policylayer.com/registry/api · Policy library: https://policylayer.com/policies/com-gofrantic-frantic
