@cryptoapis-io/mcp
v0.3.0
Published
All Crypto APIs MCP servers in a single package — blockchain data, transactions, fees, signing, HD wallets, market data, and more
Maintainers
Readme
@cryptoapis-io/mcp
Install all Crypto APIs MCP servers with a single command.
Prerequisites
- Node.js 18+
- Crypto APIs account and API key (sign up | get API key)
Installation
npm install @cryptoapis-io/mcpOr install only the servers you need (recommended if you only use a few):
npm install @cryptoapis-io/mcp-address-latest @cryptoapis-io/mcp-hd-walletWhat's Included
| Package | Description |
|---------|-------------|
| @cryptoapis-io/mcp-address-latest | Current balance and state for EVM, UTXO, Solana, XRP, and Kaspa addresses |
| @cryptoapis-io/mcp-address-history | Full transaction and token history for synced addresses |
| @cryptoapis-io/mcp-block-data | Block-level data from EVM, UTXO, and XRP blockchains |
| @cryptoapis-io/mcp-blockchain-events | Subscribe to and manage on-chain event webhooks |
| @cryptoapis-io/mcp-blockchain-fees | Fee recommendations and gas estimation |
| @cryptoapis-io/mcp-broadcast | Broadcast signed raw transactions |
| @cryptoapis-io/mcp-contracts | Read smart contract ABIs and on-chain data |
| @cryptoapis-io/mcp-hd-wallet | HD wallet management, balance retrieval, and sync |
| @cryptoapis-io/mcp-market-data | Asset prices, exchange rates, and market metadata |
| @cryptoapis-io/mcp-prepare-transactions | Build unsigned transactions |
| @cryptoapis-io/mcp-signer | Local transaction signing (EVM, UTXO, Tron, XRP) |
| @cryptoapis-io/mcp-simulate | Dry-run EVM transaction simulation |
| @cryptoapis-io/mcp-transactions-data | Transaction lookup and listing |
| @cryptoapis-io/mcp-utils | Address derivation and encoding utilities |
Usage
After installing, each server is available via npx:
npx @cryptoapis-io/mcp-hd-wallet --api-key YOUR_API_KEY
npx @cryptoapis-io/mcp-market-data --api-key YOUR_API_KEY
npx @cryptoapis-io/mcp-address-latest --api-key YOUR_API_KEYClaude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows):
{
"mcpServers": {
"cryptoapis-address-latest": {
"command": "npx",
"args": ["-y", "@cryptoapis-io/mcp-address-latest"],
"env": {
"CRYPTOAPIS_API_KEY": "your_api_key_here"
}
}
}
}Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"cryptoapis-address-latest": {
"command": "npx",
"args": ["-y", "@cryptoapis-io/mcp-address-latest"],
"env": {
"CRYPTOAPIS_API_KEY": "your_api_key_here"
}
}
}
}See each package's README for full documentation of available tools and actions. For n8n, MCP Inspector, and Claude Code setup, see the main README.
Important: API Key Required
Warning: Making requests without a valid API key — or with an incorrect one — may result in your IP being banned from the Crypto APIs ecosystem. Always ensure a valid API key is configured before starting any server.
Remote MCP Server
Crypto APIs provides an official remote MCP server with all tools available via HTTP Streamable transport at https://ai.cryptoapis.io/mcp. Pass your API key via the x-api-key header — no installation required.
License
MIT
