animica-chain

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

A query interface for the Animica proof-of-work blockchain, a public ledger that records accounts, transactions, and blocks.

In plain words
What is it for?
Use it to inspect the latest block, account balances, transactions, blocks, forks, hashrate, and other Animica network data.
Why use it?
It avoids having to remember the blockchain's JSON-RPC methods, explorer endpoints, address format, and base-unit conversions.

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 inspect the latest block, account balances, transactions, blocks, forks, hashrate, and other Animica network data.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/animicaorg/animica-mcp/animica-chain
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-chain
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-chain

README.md
[![agentmods](https://agentmods.dev/badge/skills/animicaorg/animica-mcp/animica-chain/github.svg)](https://agentmods.dev/skills/animicaorg/animica-mcp/animica-chain)
Your own site
<a href="https://agentmods.dev/skills/animicaorg/animica-mcp/animica-chain"><img src="https://agentmods.dev/badge/skills/animicaorg/animica-mcp/animica-chain/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-chain

Your own site · 80×15
<a href="https://agentmods.dev/skills/animicaorg/animica-mcp/animica-chain"><img src="https://agentmods.dev/badge/skills/animicaorg/animica-mcp/animica-chain.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,209 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.00052 $0.01209
Opus 5 $0.00026 $0.00605
Sonnet 5 $0.00010 $0.00242
Haiku 4.5 $0.00005 $0.00121

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

Security

Grade A, and why

animica-chain 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 \
skills/animica-chain/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.

Query the Animica L1

Animica is a proof-of-work L1 (PoIES — Proof of Integrated Extended Sacrifice, with useful-work AI/quantum credits). Facts that matter for every query:

  • Chain id: 1
  • Addresses: bech32m, prefix anim1…
  • Base unit: 1 ANM = 10^9 base units (nano-ANM). All API amounts are base units unless stated. Balance results are hex strings of base units.
  • Signatures: ML-DSA-65 (FIPS 204), scheme id 0x1003 — the only current signature scheme.

JSON-RPC endpoint

POST https://rpc.animica.org/rpc (JSON-RPC 2.0).

Always use the /rpc path — the bare root https://rpc.animica.org returns a 301 that breaks naive POST clients.

Chain head

curl -s -X POST https://rpc.animica.org/rpc \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"chain.getHead","params":{}}'
# -> {"result":{"height":73191,"hash":"0x00000000013b4e…","chainId":1,"thetaMicro":26716830,…}}

There is no chain.getHeight method — use chain.getHead and read height.

Account balance

# Replace the address with the anim1… account you are querying
curl -s -X POST https://rpc.animica.org/rpc \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":2,"method":"state.getBalance","params":{"address":"anim1zqp6zhtjsvse38vlkekdh7d44k2rmvctvkc8n6m55dhh5n8x6rpqavgztza8r"}}'
# -> {"result":"0x2d6a2a96a4f8"}   (hex, base units; divide by 1e9 for ANM)

Transaction by hash

The parameter name is txHash (hash is rejected); a positional array also works.

curl -s -X POST https://rpc.animica.org/rpc \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":3,"method":"tx.getTransaction","params":{"txHash":"0x4a35ffed4f8b747ad533b9a72303d9d7212ee2fb0daa00084171976c9a4ba0a7"}}'
# -> {"result":{"hash":"0x4a35…","gas":21000,"value":2000,"chainId":1,"blockHash":"0x…",…}}

Method namespaces

  • chain.* — getHead, getParams, getChainId, getBlockByHeight, getBlockByHash, getForks, getNetworkHashrate…
  • state.* — getBalance, getAccount, getNextNonce, getRichList, getTotalSupply, call, simulateCall…
  • tx.* / tx2.* — sendRawTransaction, getStatus, getTransaction, getReceipt, getSupportedSignatureSchemes…
  • mempool.*, net.*
  • aicf.* — 59 AI-compute methods (submitInferenceJob, jobStatus, estimateJobCost, listProviders…)
  • l2_* — 24 L2 rollup methods (l2_status, l2_getBalance, l2_getTPS, l2_sendRawTransaction…)

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 · 52 tokens per session scan A 69ff1f1b5f0e

Subscribe to this mod's changes

animica-chain is a skill published in the GitHub repository animicaorg/animica-mcp (0 stars, last pushed 28d ago), licensed Apache-2.0. It adds 52 tokens to every session and 1,209 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

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

aelf-node-skill

AElf node querying and contract execution skill for agents.

AElfProject/aelf-node-skill · 17 tokens

drpc-rpc

Use when the user needs blockchain data (balances, transactions, blocks, gas prices, contract reads), wants to set up blockchain RPC access, or mentions DRPC, Web3, or Ethereum RPC. Also triggers on specific method names like ethgetBalance, ethcall, ethgetLogs.

drpcorg/drpc-agent-skills · 63 tokens

drpc-rpc-pi

Pi Agent-specific DRPC setup flow. Use alongside drpc-rpc when the user asks for blockchain data, DRPC setup, x402 API-key acquisition, Coinbase Payments MCP, pi-mcp-adapter, or when DRPC MCP is not configured in Pi.

drpcorg/drpc-agent-skills · 60 tokens