Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add animicaorg/animica-mcp --skill animica-paymentsgit clone --depth 1 https://github.com/animicaorg/animica-mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/animicaorg/animica-mcp/animica-payments)<a href="https://agentmods.dev/skills/animicaorg/animica-mcp/animica-payments"><img src="https://agentmods.dev/badge/skills/animicaorg/animica-mcp/animica-payments/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/animicaorg/animica-mcp/animica-payments"><img src="https://agentmods.dev/badge/skills/animicaorg/animica-mcp/animica-payments.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00063 | $0.01330 |
| Opus 5 | $0.00032 | $0.00665 |
| Sonnet 5 | $0.00013 | $0.00266 |
| Haiku 4.5 | $0.00006 | $0.00133 |
Grade A, and why
animica-payments scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s -X POST https://rpc.animica.org/rpc -H 'Content-Type: application/json' \ How it starts
The opening of the file, as written. The whole thing — 80 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ANM balances and merchant payments
Read a balance (no auth)
# Node RPC (result = hex base units; 1 ANM = 10^9 base units)
curl -s -X POST https://rpc.animica.org/rpc -H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"state.getBalance","params":{"address":"anim1zqp6zhtjsvse38vlkekdh7d44k2rmvctvkc8n6m55dhh5n8x6rpqavgztza8r"}}'
# Explorer (balance + tx history)
curl -s https://explorer.animica.org/api/address/anim1zqp6zhtjsvse38vlkekdh7d44k2rmvctvkc8n6m55dhh5n8x6rpqavgztza8r
Merchant payments — pay.animica.dev
Base URL https://pay.animica.dev. Fee: 2.00% per successful payment. Docs: https://pay.animica.dev/docs.
Wire rules (verified against the live API):
- Auth:
Authorization: Bearer ask_live_…/ask_test_…(secret key). Publishable keys (apk_…) are refused on the API and must never leave the browser context; secret keys must never appear in a browser. - Amounts are decimal strings, never JSON numbers. nANM: 1 ANM = 1,000,000,000 nANM. ANM amounts allow ≤ 9 decimals; fiat ≤ 2 decimals. A JSON number is rejected with
amount_must_be_string. - Send
Idempotency-Keyon every write (use your order id). Same key + same body replays the original response; same key + different body → 409idempotency_key_reused— never mint a fresh key on 409. - Errors share one envelope:
{"error":{"type","code","message","request_id"}}. Quoterequest_idin support requests. Unauthorized → 401unauthorized.
Create a payment intent
curl -s -X POST https://pay.animica.dev/api/v1/payment-intents \
-H "Authorization: Bearer $ANIMICA_PAY_SECRET_KEY" \
-H "Idempotency-Key: order_19482" \
-H 'Content-Type: application/json' \
-d '{"amount":"49.99","currency":"USD","merchant_order_id":"19482",
"description":"Order #19482",
"success_url":"https://shop.example/received/19482",
"cancel_url":"https://shop.example/checkout"}'
# 201 -> {"object":"payment_intent","id":"pay_…","status":"AWAITING_PAYMENT",
# "anm_amount":"…","merchant_amount":"…","protocol_fee":"…","protocol_fee_bps":200,
# "payment_address":"anim1…","checkout_url":"https://pay.animica.dev/c/pay_…",
# "required_confirmations":12,"expires_at":"…"}
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 80 lines · 63 tokens per session scan A 4413216ca6f4
animica-payments is a skill published in the GitHub repository animicaorg/animica-mcp (0 stars, last pushed 27d ago), licensed Apache-2.0. It adds 63 tokens to every session and 1,330 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
tinyplace-agent
Use when an agent needs to join tiny.place, create or unlock a self-custodied Solana wallet, on-ramp or off-ramp USDC with MoonPay, buy a tiny.place @handle domain, publish an A2A directory card, poll inbox/messages/activity, or register a Hermes cron loop for platform updates.
nft-standards
Implement NFT standards (ERC-721, ERC-1155) with proper metadata handling, minting strategies, and marketplace integration. Use when creating NFT contracts, building NFT marketplaces, or implementing digital asset systems.
fintech-expert
Expert in financial technology, payment processing, open banking APIs, PSD2, blockchain in finance, robo-advisors, and RegTech. Use when the user mentions payments, open banking, PSD2, blockchain, cryptocurrency, or robo advisor, or when the task involves Payment Processing, Blockchain in Finance, Payment Security, or…
dero
Query the DERO privacy blockchain and its documentation through the dero-mcp-server. Use for any DERO ecosystem question — node setup, smart contracts (DVM-BASIC), wallets, TELA apps, RPC methods, ports, privacy mechanics, transaction tracing, contract inspection.
tinyplace
Join and operate on tiny.place (the agent-to-agent social network): create a self-custodied wallet, fund it via MoonPay, buy/renew/transfer a @handle 'domain', publish a discovery card, discover and resolve other agents, manage your profile and social graph (follow/feed/reputation), send Signal end-to-end encrypted…
tinyplace-await
Ask another tiny.place agent something and wait for its reply. Use when you send a DM that expects an answer (a query to another agent) and need to block until the response comes back.