animica-explorer

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

A free REST API for inspecting Animica blockchain data, including blocks, transactions, addresses, the transaction waiting area, token supply, and a layer-2 rollup. A blockchain is a shared record of transactions; a layer-2 rollup processes transactions through an additional system connected to it.

In plain words
What is it for?
Use it to inspect network statistics, look up blocks and transactions, review address balances and history, examine the mempool and rich list, and check rollup data.
Why use it?
It provides indexed and enriched chain information, such as confirmations and classified transaction history, instead of only raw node responses.

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 network statistics, look up blocks and transactions, review address balances and history, examine the mempool and rich list, and check rollup data.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/animicaorg/animica-mcp/animica-explorer"><img src="https://agentmods.dev/badge/skills/animicaorg/animica-mcp/animica-explorer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 940 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.00060 $0.00940
Opus 5 $0.00030 $0.00470
Sonnet 5 $0.00012 $0.00188
Haiku 4.5 $0.00006 $0.00094

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

Security

Grade A, and why

animica-explorer 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 https://explorer.animica.org/api/head
skills/animica-explorer/SKILL.md · 65 lines

How it starts

The opening of the file, as written. The whole thing — 65 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Animica explorer REST API

Base: https://explorer.animica.org/api — free, no auth, JSON. Web UI: https://explorer.animica.org.

Amounts are base units (1 ANM = 10^9); balances are hex strings, tx values decimal strings.

Live-verified examples

1. Head + network stats

curl -s https://explorer.animica.org/api/head
# -> {"head":{"height":73191,"hash":"0x00000000013b4e…","chainId":1,"thetaMicro":26716830},
#     "stats":{"mempoolSize":0,"tps":0.0057,"avgBlockTime":69.47},"thetaHistory":[…]}

2. Block by height or hash

curl -s https://explorer.animica.org/api/block/73191
# -> {"height":73191,"hash":"0x…","parentHash":"0x…","time":1786727723,"chainId":1,
#     "difficulty":26716830,"txs":[{"hash":"0x4a35…","from":"anim1…","to":"anim1…","value":"2000"},…]}

3. Transaction by hash

curl -s https://explorer.animica.org/api/tx/0x4a35ffed4f8b747ad533b9a72303d9d7212ee2fb0daa00084171976c9a4ba0a7
# -> {"hash":"0x4a35…","status":"confirmed","blockHeight":73191,"confirmations":1,
#     "timestamp":1786727723,"from":"anim1zqp6zht…","to":"anim1zqpe6a5…"}

4. Address (balance + classified tx history)

curl -s https://explorer.animica.org/api/address/anim1zqp6zhtjsvse38vlkekdh7d44k2rmvctvkc8n6m55dhh5n8x6rpqavgztza8r
# -> {"address":"anim1…","accountType":"eoa","confirmedBalance":"0x2d6a2a96a4f8",
#     "pendingBalance":"0x…","txs":[{"hash":"0x…","value":"2000","status":"confirmed",
#     "classification":{"type":"native_transfer","failed":false,…}},…]}

5. L2 rollup overview

curl -s https://explorer.animica.org/api/l2/overview
# -> {"enabled":true,"settlementMode":"VALIDITY","headBatch":2,"latestStateRoot":"0x7012d7a0…",
#     "latestBatch":{"number":2,"l2ChainId":1001,"newStateRoot":"0x…",…}}

Full route list

/head, /blocks (cursor-paginated), /block/:hashOrHeight, /tx/:hash, /address/:bech32, /mempool, /search?q= (height, hash, or address), /richlist, /richlist/summary, /circulating-supply (plain number), /mining/info, /network/status, /aicf/*, /contracts/*, /da/*, /ena/*, /quantum/info, /tokens, /tokens/:address, /l2/{overview,status,stateRoot,tps,batch/:number,tx/:hash,account/:address}, /rpc/discover (lists all node RPC methods), /meta, /health.

Read the full file on GitHub · 65 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 · 65 lines · 60 tokens per session scan A 5ab4d1008f76

Subscribe to this mod's changes

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