algorand-mcp
by GoPlausible·★ 45·Score 47
Algorand MCP server provides blockchain tools with secure wallet management for AI agents.
Overview
This is a comprehensive MCP server for the Algorand blockchain, exposing numerous operations through the Model Context Protocol. It features a sophisticated wallet system with OS keychain integration for secure key storage, spending limits, and transaction management. The server supports blockchain operations including transaction building, signing, submission, TEAL compilation, and full API access to Algod and Indexer services. It also integrates with various DeFi protocols like Tinyman AMM and Haystack Router, as well as the Alpha Arcade prediction market platform.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this server when building AI applications that need secure access to Algorand blockchain operations and DeFi protocols.
When NOT to choose this
Don't choose this if you need support for other blockchains or require custom transaction logic not covered by the existing tools.
Tools this server exposes
12 tools extracted from the READMEwallet_add_accountCreate a new Algorand account with nickname and spending limits
wallet_switch_accountSwitch the active account by nickname or index
wallet_sign_transactionSign a single transaction with the active account
wallet_optin_assetOpt the active account into an asset
create_accountCreate a new Algorand account
rekey_accountRekey an account to a new address
validate_addressCheck if an Algorand address is valid
encode_addressEncode a public key to an Algorand address
decode_addressDecode an Algorand address to a public key
pingServer connectivity check and info
wallet_get_infoGet info for the active account including balance and limits
wallet_get_assetsGet all ASA holdings for the active account
Comparable tools
Installation
Installation
npm install -g @goplausible/algorand-mcpClaude Desktop Configuration
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"algorand-mcp": {
"command": "npx",
"args": ["@goplausible/algorand-mcp"]
}
}
}FAQ
- How is wallet security handled?
- Private keys are stored in the OS keychain (encrypted by the OS) and never exposed to the agent or LLM. Only metadata like account nicknames and spending limits are stored in a local SQLite database.
- Which blockchain networks are supported?
- The server supports mainnet, testnet, and localnet. Network selection can be specified per tool call, with mainnet as the default.
Compare algorand-mcp with
Last updated · Auto-generated from public README + GitHub signals.