Model Context Protocol (MCP) server for blockchain token and smart contract analytics. This MCP provides comprehensive tools for analyzing token metrics, contract interactions, and on-chain smart contract data across multiple blockchain networks.
- Transport: HTTP (Remote only)
- URL:
https://mcp.hiveintelligence.xyz/hive_token_contract/mcp
- Protocol: Model Context Protocol (MCP)
- Token metadata and statistics
- Smart contract verification and analysis
- Token holder distribution
- Contract event monitoring
- Token transfer tracking
- Supply metrics (circulating, total, max)
- Contract source code analysis
- ABI decoding and interaction
- Token economics analysis
- Contract upgrade detection
- Multi-signature wallet tracking
- Token burn and mint events
Add to your Claude Desktop configuration file:
{
"mcpServers": {
"hive-token-contract": {
"url": "https://mcp.hiveintelligence.xyz/hive_token_contract/mcp",
"transport": "http"
}
}
}
import { Client } from '@modelcontextprotocol/sdk';
const client = new Client({
name: 'token-contract-client',
version: '1.0.0'
});
await client.connect({
url: 'https://mcp.hiveintelligence.xyz/hive_token_contract/mcp',
transport: 'http'
});
Retrieve comprehensive token information
{
"tool": "get_token_info",
"params": {
"contract_address": "0x...",
"chain": "ethereum"
}
}
Analyze token holder distribution
{
"tool": "analyze_holders",
"params": {
"token_address": "0x...",
"top_holders": 100,
"include_exchanges": false
}
}
Monitor smart contract events
{
"tool": "monitor_contract_events",
"params": {
"contract": "0x...",
"event_types": ["Transfer", "Approval"],
"from_block": "latest"
}
}
Verify and analyze contract code
{
"tool": "verify_contract",
"params": {
"address": "0x...",
"chain": "ethereum",
"check_upgradeable": true
}
}
Track token supply metrics
{
"tool": "track_token_supply",
"params": {
"token": "0x...",
"metrics": ["circulating", "total", "burned", "locked"]
}
}
smart contract, token analytics, ERC20, ERC721, ERC1155, blockchain, contract verification, token holders, contract events, ABI, application binary interface, token supply, tokenomics, contract analysis, on-chain data, multi-chain, cross-chain, contract interaction, token transfers, burn and mint, contract upgrades, proxy contracts, MCP, Model Context Protocol, Web3, decentralized, HTTP MCP server, remote MCP, Hive Intelligence, Solidity, Vyper, smart contract security, token distribution, whale tracking
MIT
For issues and feature requests, please open an issue on GitHub.
Part of the Hive Intelligence suite of blockchain analytics MCP servers.