animica-payments

animica-payments is a skill for Claude Code from animicaorg/animica-mcp. It costs 63 tokens per session (1,330 once invoked), scanned A, original, Apache-2.0.

A payment integration for checking ANM cryptocurrency balances and handling merchant payments through the Animica Pay API.

In plain words
What is it for?
Use it to add an ANM checkout, confirm payment results, process webhook notifications, reconcile transactions, or read an account balance.
Why use it?
It removes the need to build payment-intent creation, status checks, webhook verification, and balance lookup yourself.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the animica plugin — 6 skills, 1 MCP server shipped together

Good fit Use it to add an ANM checkout, confirm payment results, process webhook notifications, reconcile transactions, or read an account balance.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/animicaorg/animica-mcp/animica-payments
Install

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.

Any agent
npx skills add animicaorg/animica-mcp --skill animica-payments
Clone the repo
git clone --depth 1 https://github.com/animicaorg/animica-mcp

Made for: Claude Code.

Or install animica, the plugin that ships this one along with the rest of its 6 skills, 1 MCP server.

Wrote 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.

agentmods badge for animica-payments

README.md
[![agentmods](https://agentmods.dev/badge/skills/animicaorg/animica-mcp/animica-payments/github.svg)](https://agentmods.dev/skills/animicaorg/animica-mcp/animica-payments)
Your own site
<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.

agentmods 80×15 button for animica-payments

Your own site · 80×15
<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>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,330 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 11d ago against content hash 4413216ca6f4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

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' \
skills/animica-payments/SKILL.md · 80 lines

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-Key on every write (use your order id). Same key + same body replays the original response; same key + different body → 409 idempotency_key_reused — never mint a fresh key on 409.
  • Errors share one envelope: {"error":{"type","code","message","request_id"}}. Quote request_id in support requests. Unauthorized → 401 unauthorized.

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":"…"}

Read the full file on GitHub · 80 lines

Changes

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.

  1. 11d ago First seen · 80 lines · 63 tokens per session scan A 4413216ca6f4

Subscribe to this mod's changes

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.

Related

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.

tinyhumansai/tiny.place · 70 tokens

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.

wshobson/agents · 48 tokens

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…

personamanagmentlayer/pcl · 73 tokens

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.

DHEBP/dero-mcp-server · 59 tokens

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…

tinyhumansai/tiny.place · 108 tokens

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.

tinyhumansai/tiny.place · 39 tokens