Model Context Protocol (MCP) server for blockchain market data and cryptocurrency price analytics. This MCP provides comprehensive market data tools for DeFi applications, trading systems, and portfolio management.
- Transport: HTTP (Remote only)
- URL:
https://mcp.hiveintelligence.xyz/hive_market_data/mcp
- Protocol: Model Context Protocol (MCP)
- Real-time cryptocurrency price feeds
- Historical price data and charts
- Market cap rankings and statistics
- Trading volume analytics
- Price change tracking (24h, 7d, 30d)
- Market dominance metrics
- Cross-chain price aggregation
- Fiat currency conversion rates
- Market sentiment indicators
- Technical analysis indicators
Add to your Claude Desktop configuration file:
{
"mcpServers": {
"hive-market-data": {
"url": "https://mcp.hiveintelligence.xyz/hive_market_data/mcp",
"transport": "http"
}
}
}
import { Client } from '@modelcontextprotocol/sdk';
const client = new Client({
name: 'market-data-client',
version: '1.0.0'
});
await client.connect({
url: 'https://mcp.hiveintelligence.xyz/hive_market_data/mcp',
transport: 'http'
});
Fetch current price for any cryptocurrency
{
"tool": "get_price",
"params": {
"symbol": "BTC",
"currency": "USD"
}
}
Retrieve historical price data
{
"tool": "get_historical_prices",
"params": {
"symbol": "ETH",
"days": 30,
"interval": "daily"
}
}
Get market capitalization data
{
"tool": "get_market_cap",
"params": {
"top": 100,
"category": "defi"
}
}
Analyze trading volumes across exchanges
{
"tool": "get_volume_analytics",
"params": {
"symbol": "USDT",
"exchange": "all",
"period": "24h"
}
}
Track price changes over multiple timeframes
{
"tool": "get_price_changes",
"params": {
"symbols": ["BTC", "ETH", "BNB"],
"timeframes": ["1h", "24h", "7d", "30d"]
}
}
blockchain, cryptocurrency, market data, price feed, DeFi, trading, crypto analytics, market cap, volume, technical analysis, price tracking, real-time data, historical prices, market sentiment, crypto API, MCP, Model Context Protocol, Web3, decentralized finance, token prices, exchange data, market metrics, portfolio tracking, price aggregation, crypto charts, market indicators, HTTP MCP server, remote MCP, Hive Intelligence
MIT
For issues and feature requests, please open an issue on GitHub.
Part of the Hive Intelligence suite of blockchain analytics MCP servers.