Quick Start
Get up and running in under 2 minutes.
⚡ 30-Second Setup
For Claude Desktop
-
Open Claude Desktop settings → Developer → Edit Config
-
Paste this:
-
Restart Claude Desktop
-
Try it:
"What's the price of Bitcoin?"
That's it! 🎉
🔧 Optional: Add Write Capabilities
To execute transactions (swaps, transfers, etc.), add your private key:
{
"mcpServers": {
"crypto": {
"command": "npx",
"args": ["-y", "@nirholas/universal-crypto-mcp@latest"],
"env": {
"PRIVATE_KEY": "0xYourPrivateKeyHere"
}
}
}
}
⚠️ Security Warning: Use a dedicated wallet with small amounts for testing!
🌐 For ChatGPT
-
Start the server:
-
In ChatGPT → Settings → Apps → Create app
-
Enter:
http://localhost:3001/mcp -
Select the app in Developer mode menu
🎯 Try These First
Read Operations (No Private Key Needed)
| Try This | What It Does |
|---|---|
| "What's the price of ETH?" | Get current price |
| "Show trending coins" | See what's hot |
| "Is 0x... a safe token?" | Security check |
| "What's the gas price on Arbitrum?" | Check gas costs |
| "Get Aave TVL" | DeFi analytics |
Write Operations (Needs Private Key)
| Try This | What It Does |
|---|---|
| "Swap 0.01 ETH for USDC on Base" | Execute a swap |
| "Send 10 USDC to 0x..." | Transfer tokens |
| "Approve USDC for Uniswap" | Set approval |