algorand-interaction

algorand-interaction is a skill for Claude Code, Codex from GoPlausible/algorand-mcp. It costs 127 tokens per session (4,621 once invoked), scanned A, original, MIT.

A connection to the Algorand blockchain through an Algorand MCP server, covering wallets, transactions, smart contracts, swaps, and related account and asset tools.

In plain words
What is it for?
Use it to inspect accounts, sign and submit ALGO or token transactions, compile TEAL smart-contract code, look up names and assets, group transactions atomically, and perform supported swaps or prediction-market actions.
Why use it?
It lets an agent carry out Algorand tasks without separately wiring each blockchain operation. Wallet secrets stay in the server and are not returned in tool responses.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit Use it to inspect accounts, sign and submit ALGO or token transactions, compile TEAL smart-contract code, look up names and assets, group transactions atomically, and perform supported swaps or prediction-market actions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/goplausible/algorand-mcp/algorand-interaction
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 GoPlausible/algorand-mcp --skill algorand-interaction
Clone the repo
git clone --depth 1 https://github.com/GoPlausible/algorand-mcp

Made for: Claude Code, Codex.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/goplausible/algorand-mcp/algorand-interaction"><img src="https://agentmods.dev/badge/skills/goplausible/algorand-mcp/algorand-interaction.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 127 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,621 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00127 $0.04621
Opus 5 $0.00063 $0.02311
Sonnet 5 $0.00025 $0.00924
Haiku 4.5 $0.00013 $0.00462

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

Security

Grade A, and why

algorand-interaction scanned grade A with 0 findings 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/algorand-interaction/SKILL.md · 297 lines

How it starts

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

Algorand MCP Interaction

Interact with Algorand blockchain through the Algorand MCP server (126 tools across 15 categories).

Key Characteristics

  • Agent-wallet signing — use wallet_* tools to sign; the MCP server holds the mnemonics in a local SQLite DB and signs on your behalf. Mnemonics are never returned in tool responses.
  • Multi-network — supports mainnet, testnet, and localnet

Calling MCP Tools

MCP tools are deferred — you MUST use ToolSearch to load them before calling:

ToolSearch("+algorand wallet")                                    # Search by keyword — loads matching tools
ToolSearch("select:mcp__algorand-mcp__wallet_get_info")           # Load a specific tool by full name

Once loaded, call them normally:

mcp__algorand-mcp__wallet_get_info { "network": "testnet" }
mcp__algorand-mcp__make_payment_txn { "from": "ADDR", "to": "ADDR", "amount": 1000000, "network": "testnet" }

Full tool name pattern: mcp__algorand-mcp__<tool_name>. If you get "tool not found", use ToolSearch("+algorand <keyword>") to load it first.

Session Start Checklist

At EVERY session start:

  1. Load tools first: Call ToolSearch("+algorand wallet") to load wallet tools — MCP tools are deferred and MUST be loaded via ToolSearch before use
  2. Check wallet: mcp__algorand-mcp__wallet_get_info with target network — verify an account exists and is active
  3. If no accounts: Guide user to create one with wallet_add_account (load via ToolSearch first)
  4. If needs funding: Generate ARC-26 QR with generate_algorand_qrcode — returns { qr, uri, link, expires_in }. Display the qr text block and shareable link. Or direct to testnet faucet: https://lora.algokit.io/testnet/fund
  5. If needs USDC funding: Generate ARC-26 QR with generate_algorand_qrcode — returns { qr, uri, link, expires_in }. Display the qr text block and shareable link. Or direct to testnet faucet: https://faucet.circle.com/
  6. Confirm network: Always confirm which network (mainnet, testnet, localnet) before transactions
  7. Load additional tools as needed: Use ToolSearch("+algorand <keyword>") to load tools for the task at hand

Read the full file on GitHub · 297 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 297 lines · 127 tokens per session scan A c6ae15daeb44

Subscribe to this mod's changes

algorand-interaction is a skill published in the GitHub repository GoPlausible/algorand-mcp (44 stars, last pushed 1mo ago), licensed MIT. It adds 127 tokens to every session and 4,621 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

chainstack

Work with the Chainstack MCP server to manage blockchain nodes and projects. Use when deploying nodes, migrating to Chainstack from another RPC provider such as QuickNode or Alchemy, checking platform status, searching Chainstack docs, contacting the Chainstack team, or interacting with the Chainstack platform API via…

chainstacklabs/mcp-server · 66 tokens

klever-dev

End-to-end Klever blockchain development — smart contracts (Rust/WASM), transaction building (@klever/connect, klever-go-sdk), deployment via ksc + koperator, and on-chain interaction via MCP tools. Use when the task involves KLV, KDA tokens, klv1 addresses, Klever smart contracts, or Klever node/API interaction.

klever-io/mcp-klever-vm · 76 tokens

xrocket-exchange

Use the unofficial xRocket Exchange MCP to inspect spot markets and accounts, trade autonomously inside an operator-configured daily value limit, or prepare explicitly approved transfers and withdrawals. Trigger when a request concerns xRocket markets, account data, deposits, trading, transfers, withdrawals, or its…

nakazanie-ton/myrocket · 87 tokens

loot-agent-mcp

You are playing LOOT on Robinhood Chain (4663) through the loot-agent-mcp tools. The game in one line: hold tokens through risk to mint loot boxes, play to earn keys, open boxes with keys, claim your pro rata share of the token's fee pot in ETH. Pots grow when the token trades. Selling burns your game position for the…

D-Kek/loot-agent-mcp · 0 tokens

openclaw-crypto-payments

Skill "openclaw-crypto-payments" from yedanyagamiai-cmd/openclaw-mcp-servers, covering openclaw crypto payments v2.0, what's new in v2.0, quick start, detection triggers and named protocols.

yedanyagamiai-cmd/openclaw-mcp-servers · 115 tokens

ratchetx

RatchetX G2 Solana devnet prediction arcade, played with a local delegated signer under player-approved on-chain limits. Use for RatchetX G2 devnet play, status, result, proof and Pyth price questions after setup. Test credits only. This is a separate opt-in generation from the legacy RatchetX owner-session skill…

3esign/ratchetx · 82 tokens