The MCP server for interacting with Blockchain, Swaps, Strategic Planning and more.
https://github.com/armorwallet/armor-crypto-mcpArmor Crypto MCP gives your AI agents a unified interface to the entire crypto ecosystem. Instead of wrestling with dozens of blockchain SDKs, RPC endpoints, and exchange APIs, you get one MCP server that handles everything from wallet management to complex trading strategies.
Building crypto functionality into AI agents means dealing with:
Each integration is a weeks-long project. Armor MCP collapses all of this into a single, AI-native interface.
{
"mcpServers": {
"armor-crypto-mcp": {
"command": "uvx",
"args": ["armor-crypto-mcp@latest"],
"env": {
"ARMOR_API_KEY": "your-api-key"
}
}
}
}
That's it. Your AI agent now has access to:
Wallet Operations: Create, import, and manage wallets across multiple chains with unified commands. No more chain-specific key derivation or signature schemes.
Smart Trading: Execute swaps with built-in MEV protection, set up DCA schedules, place limit orders, and implement stop-loss strategies. The complexity of DEX routing and slippage calculation is handled automatically.
Cross-Chain Orchestration: Coordinate transactions across different blockchains without managing bridge protocols or cross-chain messaging yourself.
Advanced Analytics: Access token trending data, social sentiment analysis, and statistical calculators for portfolio analysis—all through simple MCP calls.
# Traditional approach - multiple SDKs, complex setup
from solana.rpc.api import Client as SolanaClient
from web3 import Web3
from ethereum_dex_sdk import UniswapV3
solana_client = SolanaClient("https://api.mainnet-beta.solana.com")
eth_client = Web3(Web3.HTTPProvider("https://mainnet.infura.io/..."))
uniswap = UniswapV3(eth_client)
# Handle different wallet formats, gas estimation, slippage...
# 200+ lines of chain-specific code
# With Armor MCP - unified interface
await mcp.call_tool("swap_tokens", {
"from_token": "SOL",
"to_token": "USDC",
"amount": 10,
"chain": "solana"
})
The MCP handles wallet selection, route optimization, gas estimation, and transaction broadcasting across any supported chain.
Armor MCP was designed specifically for AI agents, not retrofitted from existing APIs. This means:
Currently supporting Solana (alpha) with 12+ chains coming in beta: Ethereum, Base, Avalanche, Bitcoin, Sui, Berachain, megaETH, Optimism, Ton, BNB, and Arbitrum.
The same MCP calls work across all chains—no need to rewrite your agent logic when adding new blockchain support.
Claude Desktop: Drop the config into your MCP settings and start trading through conversation.
Cline: Add crypto capabilities to your VSCode development agent for DeFi project testing.
n8n: Build automated trading workflows that respond to market conditions or social signals.
Custom Agents: Use the unified API to build sophisticated trading bots without blockchain-specific knowledge.
The prompt examples show you exactly how to communicate with your agent to execute crypto operations.
This is crypto infrastructure built for the AI agent era. Instead of spending months on blockchain integrations, spend that time building the unique logic that makes your agent valuable.