MCP server for retrieving block-level data from EVM, UTXO, and XRP blockchains via Crypto APIs
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"cryptoapis-block-data": {
"env": {
"CRYPTOAPIS_API_KEY": "your_api_key_here"
},
"args": [
"-y",
"@cryptoapis-io/mcp-block-data"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for Crypto APIs Block Data product. Get block details by height or hash for EVM, UTXO, and XRP blockchains.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@cryptoapis-io/mcp-block-data' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @cryptoapis-io/mcp-block-data against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance / data
Manage Supabase projects — databases, auth, storage, and edge functions
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
The Apify MCP server enables your AI agents to extract data from social media, search engines, maps, e-commerce sites, or any other website using thousands of ready-made scrapers, crawlers, and automation tools available on the Apify Store.
An official Qdrant Model Context Protocol (MCP) server implementation
MCP Security Weekly
Get CVE alerts and security updates for Block Data MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server for Crypto APIs Block Data product. Get block details by height or hash for EVM, UTXO, and XRP blockchains.
API Version: Compatible with Crypto APIs version 2024-12-12
npm install @cryptoapis-io/mcp-block-data
Or install all Crypto APIs MCP servers: npm install @cryptoapis-io/mcp
# Run with API key
npx @cryptoapis-io/mcp-block-data --api-key YOUR_API_KEY
# Or use environment variable
export CRYPTOAPIS_API_KEY=YOUR_API_KEY
npx @cryptoapis-io/mcp-block-data
# HTTP transport
npx @cryptoapis-io/mcp-block-data --transport http --port 3000 --api-key YOUR_API_KEY
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-block-data": {
"command": "npx",
"args": ["-y", "@cryptoapis-io/mcp-block-data"],
"env": {
"CRYPTOAPIS_API_KEY": "your_api_key_here"
}
}
}
}
Add to .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):
{
"mcpServers": {
"cryptoapis-block-data": {
"command": "npx",
"args": ["-y", "@cryptoapis-io/mcp-block-data"],
"env": {
"CRYPTOAPIS_API_KEY": "your_api_key_here"
}
}
}
}
npx @modelcontextprotocol/inspector npx @cryptoapis-io/mcp-block-data --api-key YOUR_API_KEY
npx @cryptoapis-io/mcp-block-data --transport http --port 3000 --api-key YOUR_API_KEY
http://localhost:3000/mcpAll servers default to port 3000. Use
--portto assign different ports when running multiple servers.
evm_block_dataGet EVM block details.
| Action | Description |
|---|---|
get-block-by-height | Get block details by block number |
get-block-by-hash | Get block details by block hash |
list-transactions-by-block-height | List transactions in a block by block height |
list-transactions-by-block-hash | List transactions in a block by block hash |
get-last-mined-block | Get the latest mined block details |
list-latest-mined-blocks | List the latest mined blocks |
utxo_block_dataGet UTXO block details (Bitcoin, Bitcoin Cash, Litecoin, Dogecoin, Dash, Zcash).
| Action | Description |
|---|---|
get-block-by-height | Get block details by block number |
get-block-by-hash | Get block details by block hash |
list-transactions-by-block-height | List transactions in a block by block height |
list-transactions-by-block-hash | List transactions in a block by block hash |
get-last-mined-block | Get the latest mined block details |
list-latest-mined-blocks | List the latest mined blocks |
xrp_block_dataGet XRP block (ledger) details.
| Action | Description |
|---|---|
get-block-by-height | Get ledger details by ledger index |
get-block-by-hash | Get ledger details by ledger hash |
list-transactions-by-block-height | List transactions in a block by block height |
| `list-transactions-by |