MCP server for address derivation and encoding utilities across multiple blockchains via Crypto APIs
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"cryptoapis-utils": {
"env": {
"CRYPTOAPIS_API_KEY": "your_api_key_here"
},
"args": [
"-y",
"@cryptoapis-io/mcp-utils"
],
"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 Utils product. Validate addresses, decode raw transactions, and XRP X-Address encode/decode.
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-utils' 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-utils against OSV.dev.
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
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol (MCP) server that provides AI assistants with direct access to the Spreedly payments API. Enables LLMs to manage gateways, process transactions, tokenize payment methods, and more, through structured, validated tool calls.
MCP server for InsightSentry financial data API - market data, options, screeners, and more
Model Context Protocol for Actual Budget API
MCP Security Weekly
Get CVE alerts and security updates for io.github.CryptoAPIs-io/mcp-utils 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 Utils product. Validate addresses, decode raw transactions, and XRP X-Address encode/decode.
API Version: Compatible with Crypto APIs version 2024-12-12
npm install @cryptoapis-io/mcp-utils
Or install all Crypto APIs MCP servers: npm install @cryptoapis-io/mcp
# Run with API key
npx @cryptoapis-io/mcp-utils --api-key YOUR_API_KEY
# Or use environment variable
export CRYPTOAPIS_API_KEY=YOUR_API_KEY
npx @cryptoapis-io/mcp-utils
# HTTP transport
npx @cryptoapis-io/mcp-utils --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-utils": {
"command": "npx",
"args": ["-y", "@cryptoapis-io/mcp-utils"],
"env": {
"CRYPTOAPIS_API_KEY": "your_api_key_here"
}
}
}
}
Add to .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):
{
"mcpServers": {
"cryptoapis-utils": {
"command": "npx",
"args": ["-y", "@cryptoapis-io/mcp-utils"],
"env": {
"CRYPTOAPIS_API_KEY": "your_api_key_here"
}
}
}
}
npx @modelcontextprotocol/inspector npx @cryptoapis-io/mcp-utils --api-key YOUR_API_KEY
npx @cryptoapis-io/mcp-utils --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.
utxo_utils| Action | Description |
|---|---|
validate-address | Check if a UTXO address is valid. Requires blockchain, network, address |
decode-raw-transaction | Decode a raw transaction hex. Requires blockchain, network, rawTransactionHex |
convert-bitcoin-cash-address | Convert Bitcoin Cash address between legacy and CashAddr formats. Requires network, address (Bitcoin Cash only, no blockchain parameter) |
Supported Blockchains: bitcoin, bitcoin-cash, litecoin, dogecoin, dash, zcash
evm_utils| Action | Description |
|---|---|
validate-address | Check if an EVM address is valid. Requires blockchain, network, address |
decode-raw-transaction | Decode a raw transaction hex. Requires blockchain, network, rawTransactionHex |
xrp_utils| Action | Description |
|---|---|
validate-address | Check if an XRP address is valid. Requires network, address |
decode-x-address | Decode X-Address to classic address and tag. Requires network, xAddress |
encode-x-address | Encode classic address and tag to X-Address. Requires network, classicAddress, addressTag |
derive_addressesDerive HD wallet (xPub/yPub/zPub) change or receiving addresses without syncing. Derives up to 10 addresses per call.
| Parameter | Description |
|---|---|
blockchain | Target blockchain |
network | Network name |
extendedPublicKey | xPub/yPub/zPub for the HD wallet |
addressFormat | Address format (optional): p2pkh, p2sh, p2wpkh |