Universal Crypto MCP Server Guide
SkillCommerce & financeGuide to the Universal Crypto MCP server — a multi-chain MCP for AI agents to interact with any blockchain via natural language. Supports swaps, bridges, gas estimation, staking, lending, and more across Ethereum, Arbitrum, Base, Polygon, BSC, and testnets. Plugin architecture for extensibility.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Universal Crypto MCP Server Guide skill
What this skill tells your AI
The instructions your AI receives, as published by nirholas/three.ws in data/skills/development/universal-crypto-mcp-guide/SKILL.md and read by ahel’s review.
The Universal Crypto MCP is a single MCP server that lets AI agents interact with any EVM blockchain through natural language. Instead of configuring separate servers for each chain, this one server handles everything.
Supported Chains
| Chain | Chain ID | RPC | Status |
|---|---|---|---|
| Ethereum | 1 | Public/Infura/Alchemy | ✅ |
| Arbitrum One | 42161 | Public | ✅ |
| Base | 8453 | Public | ✅ |
| Polygon | 137 | Public | ✅ |
| BSC | 56 | Public | ✅ |
| Optimism | 10 | Public | ✅ |
| Avalanche | 43114 | Public | ✅ |
| Sepolia Testnet | 11155111 | Public | ✅ |
Quick Start
npx @nirholas/universal-crypto-mcp
Claude Desktop Config
{
"mcpServers": {
"universal-crypto": {
"command": "npx",
"args": ["@nirholas/universal-crypto-mcp"]
}
}
}
Core Tools
Token Operations
| Tool | Description |
|---|---|
getBalance | Get native/token balance on any chain |
getTokenInfo | Token metadata (name, symbol, decimals, supply) |
transfer | Transfer tokens between addresses |
approve | Set token spending allowance |
DeFi Operations
| Tool | Description |
|---|---|
swap | Execute token swap via DEX aggregator |
getSwapQuote | Get swap quote without executing |
bridge | Bridge tokens between chains |
stake | Stake tokens in a protocol |
lend | Supply tokens to lending protocol |
borrow | Borrow against collateral |
Data & Analytics
| Tool | Description |
|---|---|
getPrice | Current token price |
getGasPrice | Gas price on target chain |
getTransactionHistory | Address transaction history |
getContractInfo | Smart contract details |
Plugin Architecture
The Universal Crypto MCP uses a plugin system for extensibility:
universal-crypto-mcp/
├── core/ # Base chain interactions
├── plugins/
│ ├── swap/ # DEX aggregation (1inch, 0x, Paraswap)
│ ├── bridge/ # Cross-chain (Across, Stargate, Hop)
│ ├── lending/ # Aave, Compound
│ ├── staking/ # Lido, Rocket Pool
│ └── custom/ # Add your own plugins
Writing a Custom Plugin
export const myPlugin = {
name: 'my-protocol',
tools: [
{
name: 'myTool',
description: 'Does something useful',
parameters: { /* JSON Schema */ },
execute: async (params) => { /* implementation */ }
}
]
};
Natural Language Examples
| User Says | Agent Action |
|---|---|
| "What's my ETH balance on Arbitrum?" | getBalance(chain: 'arbitrum', address: '...', token: 'ETH') |
| "Swap 100 USDC for ETH on Base" | swap(chain: 'base', from: 'USDC', to: 'ETH', amount: '100') |
| "Bridge 500 USDT from Ethereum to Arbitrum" | bridge(from: 'ethereum', to: 'arbitrum', token: 'USDT', amount: '500') |
| "What's the gas price on Polygon?" | getGasPrice(chain: 'polygon') |
Security Considerations
- Private keys are stored locally, never transmitted
- Transaction simulation before execution (when supported)
- Slippage protection on all swaps
- Gas estimation with safety margin
- Approval amount warnings for unlimited approvals
Sperax Integration
On Arbitrum, the Universal Crypto MCP can:
- Mint/redeem Sperax USDs (auto-yield stablecoin)
- Stake SPA tokens and manage veSPA positions
- Interact with Sperax Farms for LP yield
- Query Sperax protocol analytics
Links
Signals
- GitHub stars
- 114
- Forks
- 29
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
universal-crypto-mcp-guide- Source
- github.com/nirholas/three.ws