@cryptoapis-io/mcp-address-history
OfficialProvides tools to query Binance Smart Chain address history, including transactions, token transfers, internal transactions, tokens held, and statistics, with address sync management.
Provides tools to query Bitcoin address history, including transactions, statistics, and unspent outputs, with address sync management.
Provides tools to query Bitcoin Cash address history, including transactions, statistics, and unspent outputs, with address sync management.
Provides tools to query Dash address history, including transactions, statistics, and unspent outputs, with address sync management.
Provides tools to query Dogecoin address history, including transactions, statistics, and unspent outputs, with address sync management.
Provides tools to query Ethereum address history, including transactions, token transfers, internal transactions, tokens held, and statistics, with address sync management.
Provides tools to query Litecoin address history, including transactions, statistics, and unspent outputs, with address sync management.
Provides tools to query Polygon address history, including transactions, token transfers, internal transactions, tokens held, and statistics, with address sync management.
Provides tools to query Zcash address history, including transactions, statistics, and unspent outputs, with address sync management.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@cryptoapis-io/mcp-address-historyList transactions for Bitcoin address 1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@cryptoapis-io/mcp-address-history
MCP server for Crypto APIs Address History product. Query full blockchain address transaction history for synced addresses.
API Version: Compatible with Crypto APIs version 2024-12-12
Features
Query complete EVM address history (Ethereum, Ethereum Classic, BSC, Polygon, Tron)
Query complete UTXO address history (Bitcoin, Bitcoin Cash, Litecoin, Dogecoin, Dash, Zcash)
Manage address sync (activate, sync, delete, list)
Query by timestamp range
Cursor-based pagination for large result sets
Related MCP server: @cryptoapis-io/mcp-prepare-transactions
Prerequisites
To use this MCP server, you need:
Generate an API key from your dashboard
Installation
npm install @cryptoapis-io/mcp-address-historyOr install all Crypto APIs MCP servers: npm install @cryptoapis-io/mcp
Usage
# Run with API key
npx @cryptoapis-io/mcp-address-history --api-key YOUR_API_KEY
# Or use environment variable
export CRYPTOAPIS_API_KEY=YOUR_API_KEY
npx @cryptoapis-io/mcp-address-historyClaude 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-history": {
"command": "npx",
"args": ["-y", "@cryptoapis-io/mcp-address-history"],
"env": {
"CRYPTOAPIS_API_KEY": "your_api_key_here"
}
}
}
}Cursor
Add to .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):
{
"mcpServers": {
"cryptoapis-address-history": {
"command": "npx",
"args": ["-y", "@cryptoapis-io/mcp-address-history"],
"env": {
"CRYPTOAPIS_API_KEY": "your_api_key_here"
}
}
}
}MCP Inspector
npx @modelcontextprotocol/inspector npx @cryptoapis-io/mcp-address-history --api-key YOUR_API_KEYn8n
Start the server in HTTP mode:
npx @cryptoapis-io/mcp-address-history --transport http --port 3000 --api-key YOUR_API_KEYIn your n8n workflow, add an AI Agent node
Under Tools, add an MCP Client Tool and set the URL to
http://localhost:3000/mcp
All servers default to port 3000. Use
--portto assign different ports when running multiple servers.
Available Tools
manage_address
Manage synced addresses for historical data access. Supports all EVM and UTXO blockchains.
Actions:
Action | Description |
| Sync a new address for historical data |
| Activate a previously synced address |
| Delete a synced address |
| List all synced addresses |
evm_address_history
Query EVM address full history (requires synced address).
Actions:
Action | Description |
| Get address statistics |
| List all transactions |
| List transactions from a timestamp |
| List token transfers |
| List internal transactions |
| List tokens held by address |
Supported Blockchains: ethereum, ethereum-classic, binance-smart-chain, polygon, tron
Note:
get-statisticsandlist-transactions-by-timestamponly support Ethereum and Ethereum Classic. Other actions support all five blockchains.
utxo_address_history
Query UTXO address full history (requires synced address).
Actions:
Action | Description | Pagination |
| Get address statistics | - |
| List all transactions | cursor |
| List transactions from timestamp | cursor |
| List unspent outputs (UTXOs) | offset |
Supported Blockchains: bitcoin, bitcoin-cash, litecoin, dogecoin, dash, zcash
Pagination
Most endpoints use cursor-based pagination:
// Response
{
"items": [...],
"limit": 10,
"hasMore": true,
"nextStartingAfter": "abc123"
}Use nextStartingAfter value as startingAfter parameter in the next request.
Exception: list-unspent-outputs uses offset pagination:
// Response
{
"items": [...],
"limit": 10,
"offset": 0,
"total": 150
}Configuration
For stdio transport, provide the API key at startup via CLI argument or environment variable. For HTTP transport, it can also be provided per-request via x-api-key header (see HTTP API Key Modes).
Command-line argument (recommended):
npx @cryptoapis-io/mcp-address-history --api-key {your_api_key}Environment variable:
export CRYPTOAPIS_API_KEY={your_api_key}
CLI Arguments
Argument | Description |
| Crypto APIs API key |
| Transport type: |
| HTTP host (default: |
| HTTP port (default: |
| HTTP path (default: |
| Enable stateless mode for HTTP |
HTTP API Key Modes
When using HTTP transport, the server supports two API key modes:
With
--api-key: The key is used for all requests.x-api-keyrequest headers are ignored.Without
--api-key: Each request must include anx-api-keyheader with a valid Crypto APIs key. This enables hosting a public server where each user provides their own key.
# Per-request key mode (multi-tenant)
npx @cryptoapis-io/mcp-address-history --transport http --port 3000
# Clients send x-api-key header with each requestStdio transport always requires an API key at startup.
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
Available Tools
4 toolsevm_address_historyA
Query EVM address full history (requires synced address). Cursor pagination: use 'nextStartingAfter' from response as 'startingAfter'.
Actions & supported blockchains: • get-statistics: ethereum, ethereum-classic • list-transactions: ethereum, ethereum-classic, binance-smart-chain, polygon, tron • list-transactions-by-timestamp: ethereum, ethereum-classic (requires timestamp) • list-token-transfers: ethereum, polygon, tron, ethereum-classic, binance-smart-chain • list-internal-transactions: ethereum, polygon, tron, ethereum-classic, binance-smart-chain • list-tokens: ethereum, polygon, tron, ethereum-classic, binance-smart-chain
Blockchain → Networks: • ethereum: mainnet, sepolia • ethereum-classic: mainnet, mordor • binance-smart-chain: mainnet, testnet • polygon: mainnet, amoy • tron: mainnet, nile • avalanche (C-Chain): mainnet, fuji • arbitrum: mainnet, sepolia • base: mainnet, sepolia • optimism: mainnet, sepolia
Credits by action (source: OpenAPI): • get-statistics: binance-smart-chain 575, ethereum 230, ethereum-classic 299, polygon 460, tron 345 • list-internal-transactions: binance-smart-chain 825, ethereum 330, ethereum-classic 429, polygon 660, tron 495 • list-token-transfers: binance-smart-chain 575, ethereum 230, ethereum-classic 299, polygon 460, tron 345 • list-tokens: binance-smart-chain 575, ethereum 230, ethereum-classic 299, polygon 460, tron 345 • list-transactions: binance-smart-chain 325, ethereum 130, ethereum-classic 169, polygon 260, tron 195 • list-transactions-by-timestamp: binance-smart-chain 575, ethereum 230, ethereum-classic 299, polygon 460, tron 345
Credits are indicative only and may change at any time. The actual credits spent for each API request are returned in the response headers.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of items to return (max 50) | |
| action | Yes | Action to perform | |
| address | Yes | Address to query | |
| context | No | Optional context for the request - echoed back in response | |
| network | Yes | Network name | |
| timestamp | No | Unix timestamp (starting point) for list-transactions-by-timestamp action | |
| blockchain | Yes | Blockchain protocol | |
| sortingOrder | No | Sort order: ascending (oldest first) or descending (newest first) | |
| startingAfter | No | Pagination cursor - use nextStartingAfter from previous response |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the transparency burden. It discloses a key precondition ('requires synced address'), cursor-based pagination behavior ('use nextStartingAfter from response as startingAfter'), and credit costs per action/blockchain. It does not detail auth or error behavior, but the query-only nature is strongly implied by 'Query' and the list/get actions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is long but well-structured with bullet lists for actions, networks, and credits. Every section earns its place, though the credit matrix is extensive and could be seen as slightly verbose for initial tool selection.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (9 parameters, 6 actions, multiple networks) and no output schema, the description covers the essential operational details: supported actions, blockchain/network compatibility, pagination, and cost. It does not describe the response shape beyond the cursor and credit headers, which is a minor gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Although the schema already documents every parameter, the description adds substantial meaning by mapping actions to supported blockchains, blockchain to networks, and explaining the pagination cursor relationship. This goes far beyond the schema's enum lists and directly helps an agent choose valid parameter combinations.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The opening line 'Query EVM address full history' uses a specific verb and resource, clearly distinguishing it from non-EVM tools like utxo_address_history. The subsequent action list (get-statistics, list-transactions, list-token-transfers, etc.) further clarifies the exact scope of the tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides strong usage context: it states the prerequisite ('requires synced address'), the supported actions, and the exact blockchain/network combinations. It does not explicitly name alternatives or exclusions, but the 'EVM' qualifier and sibling tool names make the intended use clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
manage_addressA
Manage synced addresses for Address History APIs. Cursor pagination for 'list': use 'nextStartingAfter' as 'startingAfter'.
Actions: • sync: Add new address to sync (requires 'address') • list: Get all synced addresses for blockchain/network • activate: Reactivate a paused address (requires 'address') • delete: Remove synced address (requires 'address')
Blockchain → Networks: • ethereum: mainnet, sepolia • ethereum-classic: mainnet, mordor • binance-smart-chain: mainnet, testnet • polygon: mainnet, amoy • tron: mainnet, nile • avalanche (C-Chain): mainnet, fuji • arbitrum: mainnet, sepolia • base: mainnet, sepolia • optimism: mainnet, sepolia • bitcoin: mainnet, testnet • bitcoin-cash: mainnet, testnet • litecoin: mainnet, testnet • dogecoin: mainnet, testnet • dash: mainnet, testnet • zcash: mainnet, testnet
Note: 'sync', 'activate', 'delete' actions require confirmation. They return a preview with a one-time token instead of executing immediately.
Credits by action (source: OpenAPI): • activate: 30 • delete: 30 • list: 30 • sync: 30
Credits are indicative only and may change at any time. The actual credits spent for each API request are returned in the response headers.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of items to return (max 50) | |
| action | Yes | Action to perform: sync, list, activate, delete | |
| address | No | Address (required for sync, activate, delete) | |
| context | No | Optional context for the request - echoed back in response | |
| network | Yes | Network name | |
| blockchain | Yes | Blockchain protocol | |
| sortingOrder | No | Sort order: ascending (oldest first) or descending (newest first) | |
| startingAfter | No | Pagination cursor - use nextStartingAfter from previous response | |
| confirmationToken | No | Confirmation token from a previous preview response. IMPORTANT: You MUST present the warning and impact to the user and receive their explicit approval before passing this token. NEVER auto-confirm — always ask the user first. The token expires after 60 seconds. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Despite no annotations, the description discloses critical behaviors: the confirmation requirement for sync/activate/delete (returning a preview token instead of immediate execution), cursor pagination mechanics, and indicative credit costs. This goes well beyond the schema's parameter descriptions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is structured with clear sections and bullet points, front-loading the main purpose. Each piece of information (actions, networks, confirmation, credits) justifies its place, avoiding redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (four actions, many networks, confirmation flow), the description covers essential operational details: action-specific parameter needs, network mappings, pagination, and credits. It lacks response format details, which would be useful since there's no output schema, but is otherwise sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers all parameters (100% coverage), but the description adds conditional requirements (e.g., 'address' required for sync/activate/delete) and explains the pagination parameter usage. It also clarifies the context of blockchain-network mappings.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'Manage synced addresses for Address History APIs', a clear verb-resource pair, then enumerates specific actions (sync, list, activate, delete). This clearly differentiates from sibling tools like evm_address_history and utxo_address_history, which focus on querying history.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use the tool: to manage addresses for Address History APIs. It details each action and even gives pagination guidance. However, it does not explicitly state when not to use it or name alternatives, though siblings are contextually different.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
system_infoA
CryptoAPIs reference documentation — no API call, no credits consumed.
Actions: • blockchains — Supported blockchains, networks, products per chain, denominations, fiat currencies • errors — Complete error code table (HTTP status, error code, message) • credits — Credit charging structure, cost multipliers per blockchain, monitoring & operations taxes (xPub, synced addresses, blockchain events), pay-as-you-go • callbacks — Webhook mechanics: URL requirements, retry strategy (5 retries, exponential backoff), HMAC security, idempotency • limits — Throughput soft/hard limits per plan, 2.1x penalty multiplier, rate limiting behavior
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Reference topic to retrieve | |
| context | No | Optional context for the request - echoed back in response |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose behavioral traits. It explicitly states 'no API call, no credits consumed', indicating a read-only, side-effect-free operation. It also details what each action returns (e.g., 'credit charging structure', 'webhook mechanics'), giving insight into behavior. However, it does not explicitly mention idempotency, authentication requirements, or error behavior, but these are less relevant for a reference tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured and appropriately sized. It front-loads the core purpose in the first sentence, then uses bullet points to list actions efficiently. Every sentence adds value, and the format improves scannability. There is no redundancy or unnecessary fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (2 params, no output schema), the description is highly complete: it enumerates all five actions and describes the content of each. It covers the 'context' parameter's behavior indirectly by mentioning it only in the schema. While it does not specify response format or error handling, for a reference documentation tool this is sufficient and the description fully supports agent usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers both parameters (action, context) at 100%, so baseline is 3. The description adds significant meaning by explaining what each enum value of 'action' provides, e.g., 'blockchains — Supported blockchains, networks, products per chain, denominations, fiat currencies'. This goes beyond the schema's simple 'Reference topic to retrieve' and provides richer semantic context.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool provides CryptoAPIs reference documentation with no API call or credits consumed, and lists five specific actions (blockchains, errors, credits, callbacks, limits). This distinguishes it from sibling tools like manage_address or history tools, which are operational. The verb 'retrieve' is implied and the resource (reference topics) is explicit.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for obtaining reference information, emphasizing 'no API call, no credits consumed' which positions it as a safe exploratory tool. It does not explicitly name alternatives or state when not to use it, but the context is clear given its reference nature and the sibling tools are operational. The listing of actions provides a direct way to decide which action to invoke.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
utxo_address_historyA
Query UTXO address full history (requires synced address).
Pagination: • list-transactions, list-transactions-by-timestamp: cursor pagination (use 'nextStartingAfter' → 'startingAfter') • list-unspent-outputs: offset pagination (use 'offset', response has 'total')
Actions & supported blockchains: • get-statistics: bitcoin, bitcoin-cash • list-transactions: bitcoin, bitcoin-cash, litecoin, dogecoin, dash, zcash • list-transactions-by-timestamp: bitcoin, bitcoin-cash (requires timestamp) • list-unspent-outputs: bitcoin, bitcoin-cash, litecoin, dogecoin, dash, zcash (uses offset pagination)
Blockchain → Networks: • bitcoin: mainnet, testnet • bitcoin-cash: mainnet, testnet • litecoin: mainnet, testnet • dogecoin: mainnet, testnet • dash: mainnet, testnet • zcash: mainnet, testnet
Credits by action (source: OpenAPI): • get-statistics: bitcoin 530, bitcoin-cash 689, dash 583, dogecoin 583, litecoin 583, zcash 689 • list-transactions: bitcoin 130, bitcoin-cash 169, dash 143, dogecoin 143, litecoin 143, zcash 169 • list-transactions-by-timestamp: bitcoin 530, bitcoin-cash 689, dash 583, dogecoin 583, litecoin 583, zcash 689 • list-unspent-outputs: bitcoin 530, bitcoin-cash 689, dash 583, dogecoin 583, litecoin 583, zcash 689
Credits are indicative only and may change at any time. The actual credits spent for each API request are returned in the response headers.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of items to return (max 50) | |
| action | Yes | Action to perform | |
| offset | No | Pagination offset | |
| address | Yes | Address to query | |
| context | No | Optional context for the request - echoed back in response | |
| network | Yes | Network name | |
| timestamp | No | Unix timestamp (starting point) for list-transactions-by-timestamp action | |
| blockchain | Yes | Blockchain protocol | |
| sortingOrder | No | Sort order: ascending (oldest first) or descending (newest first) | |
| startingAfter | No | Pagination cursor - use nextStartingAfter from previous response |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses pagination behavior (cursor vs offset), the prerequisite of a synced address, and credit costs per action/blockchain. It does not explicitly state that the tool is read-only, but 'Query' implies that, and the credit information adds behavioral context beyond a simple read operation. It lacks explicit statements about side effects, but for a query tool this is not a major gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is structured with bullet points and sections (Pagination, Actions, Blockchain -> Networks, Credits), making it easy to scan. The main purpose is front-loaded in the first line. While it is fairly long, the density of useful information justifies the length, and each section serves a distinct practical purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity—10 parameters, 4 actions, 6 blockchains, varying pagination schemes, and no output schema—the description covers the essential context comprehensively: supported combinations, pagination rules, and credit costs. It lacks return value details, but for a history query tool this is partially implied. The description is complete enough for an agent to select the appropriate action and parameters.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% coverage, but the description adds significant cross-cutting semantics: it maps each action to supported blockchains, explains which pagination parameters apply to which action, and specifies that 'list-transactions-by-timestamp' requires the timestamp parameter. This goes well beyond the individual schema descriptions, making the parameter choices and combinations clear.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: "Query UTXO address full history" with the prerequisite "requires synced address." The verb 'Query' and the specific resource 'UTXO address full history' distinguish it from sibling tools like evm_address_history, and the detailed action list further specifies what it does.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit usage context by listing which actions support which blockchains, the pagination method for each action, and the requirement for a synced address. It does not explicitly mention alternatives or exclusions (e.g., 'use evm_address_history for EVM chains'), but the action/blockchain compatibility matrix serves as clear guidance for when to use this tool and which sub-actions to choose.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
4 tool updates
v0.3.0- First observed
evm_address_history - First observed
manage_address - First observed
system_info - First observed
utxo_address_history
TDQS
Each tool has a clearly distinct purpose: manage_address handles syncing, evm_address_history and utxo_address_history query different blockchain types, and system_info provides reference. No overlap or ambiguity between tools.
Tool names are readable and predictable, but there is a minor inconsistency: manage_address follows a verb_noun pattern while the other three are noun phrases. The two address history tools share a consistent naming convention, keeping the set mostly coherent.
Four tools is well-scoped for an address history server, covering management, querying for EVM and UTXO chains, and reference. Each tool is essential and earns its place without overwhelming the agent.
The tool set covers the core lifecycle: syncing addresses (manage_address) and querying full history for EVM and UTXO chains. Missing a direct balance/address details tool is a minor gap, but the included actions cover the main use cases for address history.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP server for Fuse Network: balances, tokens, staking, DeFi data, swaps and on-chain transactions.
Hosted MCP server for live Bittensor chain reads and self-custodial on-chain writes.
MCP server connecting AI agents to non-custodial staking data across 130+ networks.
MCP server with quote and live cryptocurrency price tools, local and cloud-deployed transports.
21
Related MCP Servers
- AlicenseAqualityCmaintenanceMCP server for Crypto APIs Blockchain Fees product, providing fee recommendations and gas estimates for UTXO, EVM, and XRP blockchains.4146MIT
- AlicenseAqualityCmaintenanceMCP server for Crypto APIs Prepare Transactions product that builds unsigned EVM transactions for native coin, fungible token (ERC-20), and NFT (ERC-721) transfers.2146MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for Crypto APIs Block Data product. Get block details by height or hash for EVM, UTXO, and XRP blockchains.109MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for Crypto APIs Transactions Data. Enables lookup of transaction details by hash across EVM, UTXO, Solana, XRP, and Kaspa blockchains.107MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/CryptoAPIs-io/cryptoapis-mcp-address-history'
If you have feedback or need assistance with the MCP directory API, please join our Discord server