# claim_forge

[Advanced] Build calldata to claim weekly $FORGE rewards. Proof is fetched from forgetreasury.com/rewards when omitted.

Agent View of the PolicyLayer registry record for `claim_forge`. HTML page: https://policylayer.com/tools/com-forgetreasury-treasury/claim-forge

## Facts

- Tool: `claim_forge`
- Server: Forge Treasury (`https://mcp.forgetreasury.com/mcp`) — https://policylayer.com/tools/com-forgetreasury-treasury.md
- Homepage: https://github.com/forge-treasury/forge-cursor-plugin
- Risk category: Financial (Critical risk)
- Registry record: grade F, identity unverified
- Server auth posture: open
- Server CORS policy: *
- Server rate-limited: no
- Parameters: 4 (2 required)
- Recommended policy verdict: Approval-gated

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `epoch` | string | yes | Reward epoch number |
| `proof` | array | no | Merkle proof array (bytes32 hex strings). Optional — auto-fetched from manifest. |
| `amount` | string | no | FORGE amount to claim (raw wei string). Optional if manifest has allocation. |
| `agentAddress` | string | yes | Agent wallet address |

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": "claim_forge",
    "arguments": {
      "epoch": "<epoch>",
      "agentAddress": "<agentAddress>"
    }
  }
}
```

## Why claim_forge is rated Critical

This tool builds and potentially submits calldata to claim $FORGE token rewards on Base mainnet. Claiming rewards constitutes a financial action as it moves tokens to the caller's wallet. Misuse could result in unauthorized reward claims or drain reward entitlements.

From the tool's own definition: "'claim weekly $FORGE rewards' and 'Build calldata to claim... rewards' — triggers on-chain financial transaction to claim token rewards"

## Use case

AI agents use claim_forge to commit financial operations through Forge Treasury, 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 Forge Treasury:

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

## Other tools on Forge Treasury (8)

- `deposit` — Financial — https://policylayer.com/tools/com-forgetreasury-treasury/deposit.md
- `withdraw` — Financial — https://policylayer.com/tools/com-forgetreasury-treasury/withdraw.md
- `get_balance` — Read — https://policylayer.com/tools/com-forgetreasury-treasury/get-balance.md
- `get_current_apy` — Read — https://policylayer.com/tools/com-forgetreasury-treasury/get-current-apy.md
- `get_forge_rewards` — Read — https://policylayer.com/tools/com-forgetreasury-treasury/get-forge-rewards.md
- `get_vault_stats` — Read — https://policylayer.com/tools/com-forgetreasury-treasury/get-vault-stats.md
- `list_profiles` — Read — https://policylayer.com/tools/com-forgetreasury-treasury/list-profiles.md
- `simulate_deposit` — Read — https://policylayer.com/tools/com-forgetreasury-treasury/simulate-deposit.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-forgetreasury-treasury · API: https://policylayer.com/registry/api · Policy library: https://policylayer.com/policies/com-forgetreasury-treasury
