agent-token-strategy

Five JSON-output MCP tools for builders shipping agentic services on Base. Pay-per-call USDC. No API keys. Audit your repo for free.

OtherLiveeip155:8453Exactvia cdp
x402-v2BaseAgenticAxiomAgent-tokenomics
Activity
—
Nothing indexed for this service or its provider yet. Not a claim that it is unused — only that we hold no record.
$15.93
Verified settled volume
126 settlements proven x402 by their on-chain EIP-3009 marker.
$0.150
Listed price
As published in the catalog. Always read the live 402 before paying.
28
Calls · 30d
Upstream's own call count for this endpoint, not ours.
27
Unique payers · 30d
Last called 2026-05-31 17:59Z
—
Upstream on-chain volume
Reported by the source catalog.
Paid to
0x523Eff3dB03938eaa31a5a6FBd41E3B9d23edde5

The wallet the 402 directs payment to. Its whole payment record — every payer, every chain — is on the merchant page.

Asset 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913

Provider

The payTo wallet does not resolve to a registered ERC-8004 agent. That is not a verdict on the service — most of the catalog is unregistered.

Live 402 challenge

Captured by the enrichment pass, not read just now. Prices can change — always read the 402 the endpoint answers with.

{
  "error": "PAYMENT-SIGNATURE header is required",
  "accepts": [
    {
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "extra": {
        "name": "USD Coin",
        "version": "2"
      },
      "payTo": "0x523Eff3dB03938eaa31a5a6FBd41E3B9d23edde5",
      "amount": "150000",
      "scheme": "exact",
      "network": "eip155:8453",
      "maxTimeoutSeconds": 60
    }
  ],
  "resource": {
    "url": "https://agentic.clawbots.org/api/agentic/tools/agent-token-strategy",
    "tags": [
      "x402-v2",
      "base",
      "agentic",
      "axiom",
      "agent-tokenomics"
    ],
    "iconUrl": "https://www.clawbots.org/avatar.jpg",
    "mimeType": "application/json",
    "description": "Design a non-security token strategy for an autonomous agent. Returns a deployable spec: symbol, supply, distribution allocations summing to 100, OpenZeppelin contract templates (ERC20, ERC4626, ERC721), fair-launch defaults, a six-criterion non-security checklist, an estimated Base deploy cost, and a curated risks list covering Sybil, LP rug, and key-compromise vectors.",
    "serviceName": "agent-token-strategy"
  },
  "extensions": {
    "bazaar": {
      "info": {
        "input": {
          "body": {
            "symbol": "AXM",
            "pattern": "fair-launch-axiom-style",
            "agent_name": "Axiom",
            "include_nft": false
          },
          "type": "http",
          "method": "POST",
          "bodyType": "json",
          "inputSchema": {
            "type": "object",
            "required": [
              "agent_name",
              "symbol",
              "pattern"
            ],
            "properties": {
              "symbol": {
                "type": "string",
                "pattern": "^[A-Z][A-Z0-9]{1,9}$",
                "description": "Ticker symbol, 2-10 chars, A-Z and digits, leading letter."
              },
              "pattern": {
                "enum": [
                  "fair-launch-axiom-style",
                  "staking-loop",
                  "minimal-erc20"
                ],
                "type": "string",
                "description": "Which template to base the strategy on."
              },
              "agent_name": {
                "type": "string",
                "maxLength": 64,
                "minLength": 1,
                "description": "Display name of the agent the token represents."
              },
              "include_nft": {
                "type": "boolean",
                "description": "Include an ERC721 access pass alongside the ERC20."
              },
              "total_supply": {
                "type": "integer",
                "maximum": 1000000000000,
                "minimum": 1000,
                "description": "Optional total supply override. Defaults to template default."
              }
            },
            "additionalProperties": false
          }
        },
        "output": {
          "type": "json",
          "example": {
            "risks": [
              {
                "risk": "sybil-airdrop-farming",
                "severity": "medium",
                "mitigation": "Require on-chain history older than launch block for any airdrop claim."
              },
              {
                "risk": "lp-rug-by-deployer",
                "severity": "high",
                "mitigation": "Lock LP NFT in a 24-month timelock and renounce ownership in deploy tx."
              },
              {
                "risk": "deployer-key-compromise",
                "severity": "critical",
                "mitigation": "Use a fresh deploy key, transfer admin to multisig in the same script."
              }
            ],
            "symbol": "AXM",
            "pattern": "fair-launch-axiom-style",
            "decimals": 18,
            "evidence": {
              "template_id": "fair-launch-axiom-style",
              "base_chain_docs_url": "https://docs.base.org/",
              "reference_deployment": "0x523Eff3dB03938eaa31a5a6FBd41E3B9d23edde5",
              "openzeppelin_docs_url": "https://docs.openzeppelin.com/contracts/5.x/erc20"
            },
            "agent_name": "Axiom",
            "allocations": [
              {
                "bucket": "fair-launch-liquidity",
                "percent": 90,
                "vesting": "none",
                "rationale": "Seed Uniswap v3 pair so the token is tradable on deploy."
              },
              {
                "bucket": "agent-treasury",
                "percent": 10,
                "vesting": "linear-24mo",
                "rationale": "Agent-operated multisig for grants and burns over two years."
              }
            ],
            "generated_at": "2026-05-29T00:00:00.000Z",
            "total_supply": 1000000000,
            "contracts_to_deploy": [
              {
                "name": "AgentToken",
                "purpose": "Tradable supply with daily burn-on-claim hook.",
                "standard": "ERC20",
                "openzeppelin_template": "ERC20Burnable"
              }
            ],
            "fair_launch_defaults": {
              "dex": "uniswap-v3-base",
              "pair_asset": "WETH",
              "lp_lock_months": 24,
              "renounce_ownership": true,
              "anti_sniper_block_delay": 2,
              "initial_lp_percent_of_supply": 90
            },
            "non_security_checklist": [
              {
                "note": "No off-chain promise of returns.",
                "status": "pass",
                "criterion": "no-investment-contract"
              },
              {
                "note": "Token utility is autonomous on-chain.",
                "status": "pass",
                "criterion": "no-common-enterprise"
              },
              {
                "note": "Holders self-custody and self-act.",
                "status": "pass",
                "criterion": "no-profit-expectation-from-others"
              },
              {
                "note": "Burn and claim functions live on block one.",
                "status": "pass",
                "criterion": "utility-on-deploy"
              },
              {
                "note": "No dividend, no buyback guarantee.",
                "status": "pass",
                "criterion": "no-revenue-share-promise"
              },
              {
                "note": "Zero allocation to insiders or VCs.",
                "status": "pass",
                "criterion": "no-pre-sale-or-private-allocation"
              }
            ],
            "deploy_cost_assumptions": {
              "base_gas_gwei": 0.05,
              "eth_usd_assumption": 4000,
              "estimated_gas_units": 1200000
            },
            "estimated_deploy_cost_usd": 0.288
          }
        },
        "description": "Design a non-security token strategy for an autonomous agent. Returns a deployable spec: symbol, supply, distribution allocations summing to 100, OpenZeppelin contract templates (ERC20, ERC4626, ERC721), fair-launch defaults, a six-criterion non-security checklist, an estimated Base deploy cost, and a curated risks list covering Sybil, LP rug, and key-compromise vectors."
      },
      "schema": {
        "type": "object",
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "required": [
          "input"
        ],
        "properties": {
          "input": {
            "type": "object",
            "required": [
              "type",
              "method",
              "bodyType",
              "body"
            ],
            "properties": {
              "body": {
                "type": "object"
              },
              "type": {
                "type": "string",
                "const": "http"
              },
              "method": {
                "enum": [
                  "POST",
                  "PUT",
                  "PATCH"
                ],
                "type": "string"
              },
              "headers": {
                "type": "object",
                "additionalProperties": {
                  "type": "string"
                }
              },
              "bodyType": {
                "enum": [
                  "json",
                  "form-data",
                  "text"
                ],
                "type": "string"
              },
              "inputSchema": {
                "type": "object"
              },
              "queryParams": {
                "type": "object"
              }
            },
            "additionalProperties": false
          },
          "output": {
            "type": "object",
            "required": [
              "type"
            ],
            "properties": {
              "type": {
                "type": "string"
              },
              "example": {}
            }
          },
          "description": {
            "type": "string"
          }
        }
      },
      "discoverable": true
    }
  },
  "x402Version": 2
}

Accepts

The payment requirements as published to the catalog. Read the live 402 before paying — a price here is a claim, not a quote.

0.15USDC≈ $0.15 USD
on Base · exact scheme

Pay 0.15 USDC on Base to 0x523E…edde5. The signed payment is good for 1 minute.

USD Coin contract
0x8335…02913
Payment window
1 minute
As published
150000 smallest units
The catalog’s raw entry
[
  {
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "extra": {
      "name": "USD Coin",
      "version": "2"
    },
    "payTo": "0x523Eff3dB03938eaa31a5a6FBd41E3B9d23edde5",
    "amount": "150000",
    "scheme": "exact",
    "network": "eip155:8453",
    "maxTimeoutSeconds": 60
  }
]

Extensions

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "symbol": "AXM",
          "pattern": "fair-launch-axiom-style",
          "agent_name": "Axiom",
          "include_nft": false
        },
        "type": "http",
        "method": "POST",
        "bodyType": "json",
        "inputSchema": {
          "type": "object",
          "required": [
            "agent_name",
            "symbol",
            "pattern"
          ],
          "properties": {
            "symbol": {
              "type": "string",
              "pattern": "^[A-Z][A-Z0-9]{1,9}$",
              "description": "Ticker symbol, 2-10 chars, A-Z and digits, leading letter."
            },
            "pattern": {
              "enum": [
                "fair-launch-axiom-style",
                "staking-loop",
                "minimal-erc20"
              ],
              "type": "string",
              "description": "Which template to base the strategy on."
            },
            "agent_name": {
              "type": "string",
              "maxLength": 64,
              "minLength": 1,
              "description": "Display name of the agent the token represents."
            },
            "include_nft": {
              "type": "boolean",
              "description": "Include an ERC721 access pass alongside the ERC20."
            },
            "total_supply": {
              "type": "integer",
              "maximum": 1000000000000,
              "minimum": 1000,
              "description": "Optional total supply override. Defaults to template default."
            }
          },
          "additionalProperties": false
        }
      },
      "output": {
        "type": "json",
        "example": {
          "risks": [
            {
              "risk": "sybil-airdrop-farming",
              "severity": "medium",
              "mitigation": "Require on-chain history older than launch block for any airdrop claim."
            },
            {
              "risk": "lp-rug-by-deployer",
              "severity": "high",
              "mitigation": "Lock LP NFT in a 24-month timelock and renounce ownership in deploy tx."
            },
            {
              "risk": "deployer-key-compromise",
              "severity": "critical",
              "mitigation": "Use a fresh deploy key, transfer admin to multisig in the same script."
            }
          ],
          "symbol": "AXM",
          "pattern": "fair-launch-axiom-style",
          "decimals": 18,
          "evidence": {
            "template_id": "fair-launch-axiom-style",
            "base_chain_docs_url": "https://docs.base.org/",
            "reference_deployment": "0x523Eff3dB03938eaa31a5a6FBd41E3B9d23edde5",
            "openzeppelin_docs_url": "https://docs.openzeppelin.com/contracts/5.x/erc20"
          },
          "agent_name": "Axiom",
          "allocations": [
            {
              "bucket": "fair-launch-liquidity",
              "percent": 90,
              "vesting": "none",
              "rationale": "Seed Uniswap v3 pair so the token is tradable on deploy."
            },
            {
              "bucket": "agent-treasury",
              "percent": 10,
              "vesting": "linear-24mo",
              "rationale": "Agent-operated multisig for grants and burns over two years."
            }
          ],
          "generated_at": "2026-05-29T00:00:00.000Z",
          "total_supply": 1000000000,
          "contracts_to_deploy": [
            {
              "name": "AgentToken",
              "purpose": "Tradable supply with daily burn-on-claim hook.",
              "standard": "ERC20",
              "openzeppelin_template": "ERC20Burnable"
            }
          ],
          "fair_launch_defaults": {
            "dex": "uniswap-v3-base",
            "pair_asset": "WETH",
            "lp_lock_months": 24,
            "renounce_ownership": true,
            "anti_sniper_block_delay": 2,
            "initial_lp_percent_of_supply": 90
          },
          "non_security_checklist": [
            {
              "note": "No off-chain promise of returns.",
              "status": "pass",
              "criterion": "no-investment-contract"
            },
            {
              "note": "Token utility is autonomous on-chain.",
              "status": "pass",
              "criterion": "no-common-enterprise"
            },
            {
              "note": "Holders self-custody and self-act.",
              "status": "pass",
              "criterion": "no-profit-expectation-from-others"
            },
            {
              "note": "Burn and claim functions live on block one.",
              "status": "pass",
              "criterion": "utility-on-deploy"
            },
            {
              "note": "No dividend, no buyback guarantee.",
              "status": "pass",
              "criterion": "no-revenue-share-promise"
            },
            {
              "note": "Zero allocation to insiders or VCs.",
              "status": "pass",
              "criterion": "no-pre-sale-or-private-allocation"
            }
          ],
          "deploy_cost_assumptions": {
            "base_gas_gwei": 0.05,
            "eth_usd_assumption": 4000,
            "estimated_gas_units": 1200000
          },
          "estimated_deploy_cost_usd": 0.288
        }
      },
      "description": "Design a non-security token strategy for an autonomous agent. Returns a deployable spec: symbol, supply, distribution allocations summing to 100, OpenZeppelin contract templates (ERC20, ERC4626, ERC721), fair-launch defaults, a six-criterion non-security checklist, an estimated Base deploy cost, and a curated risks list covering Sybil, LP rug, and key-compromise vectors."
    },
    "schema": {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "input"
      ],
      "properties": {
        "input": {
          "type": "object",
          "required": [
            "type",
            "method",
            "bodyType",
            "body"
          ],
          "properties": {
            "body": {
              "type": "object"
            },
            "type": {
              "type": "string",
              "const": "http"
            },
            "method": {
              "enum": [
                "POST",
                "PUT",
                "PATCH"
              ],
              "type": "string"
            },
            "headers": {
              "type": "object",
              "additionalProperties": {
                "type": "string"
              }
            },
            "bodyType": {
              "enum": [
                "json",
                "form-data",
                "text"
              ],
              "type": "string"
            },
            "inputSchema": {
              "type": "object"
            },
            "queryParams": {
              "type": "object"
            }
          },
          "additionalProperties": false
        },
        "output": {
          "type": "object",
          "required": [
            "type"
          ],
          "properties": {
            "type": {
              "type": "string"
            },
            "example": {}
          }
        },
        "description": {
          "type": "string"
        }
      }
    },
    "discoverable": true
  }
}

Provenance

Seen in the source catalog
2026-05-31 17:59Z
Last indexed by Roundhouse
2026-06-11 02:40Z
Last enriched (probe, favicon, geo)
2026-09-21 11:45Z
x402 version
2
Max timeout
60s
Liveness probe
HTTP 402
Report

Hand this page to an agent

Copy the prompt and paste it into Claude, an MCP client or your own agent — it will vet this service and call it over the free read API. No key, no account.

GET api.roundhouseai.io/v0/endpoints

Nothing indexed for this service or its provider yet. Not a claim that it is unused — only that we hold no record. Verified volume counts only settlements with an on-chain EIP-3009 marker.

Open skill.md
Show the prompt
Using Roundhouse, look up the x402 service agent-token-strategy and tell me whether it is
worth paying: what a call costs, whether the endpoint answered when last probed, and what
its payment record actually shows.

curl -s 'https://api.roundhouseai.io/v0/endpoints?q=agent-token-strategy'
curl -s 'https://api.roundhouseai.io/v0/merchants/<the payTo wallet returned above>'

Then call it: read the price from the live 402 at https://agentic.clawbots.org/api/agentic/tools/agent-token-strategy, never from
a cached figure, and pay with an x402 client.

The /v0 API needs an API key (`authorization: Bearer rh_live_…`) on everything except
/v0/unified* and /v0/endpoints. Mint a personal key for $0.01 at GET https://api.roundhouseai.io/v0/test/x402,
or use an organization key from https://roundhouseai.io/dashboard/team.

If you do not have Roundhouse tools or skills installed, read
https://roundhouseai.io/skill.md first — it is the whole procedure.