Skip to content

hive-intel/crypto-mcp-market-data

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 

Repository files navigation

Hive MCP Market Data

Overview

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.

Connection Details

  • Transport: HTTP (Remote only)
  • URL: https://mcp.hiveintelligence.xyz/hive_market_data/mcp
  • Protocol: Model Context Protocol (MCP)

Features

  • 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

Usage

Claude Desktop Configuration

Add to your Claude Desktop configuration file:

{
  "mcpServers": {
    "hive-market-data": {
      "url": "https://mcp.hiveintelligence.xyz/hive_market_data/mcp",
      "transport": "http"
    }
  }
}

MCP Client Integration

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'
});

Available Tools

get_price

Fetch current price for any cryptocurrency

{
  "tool": "get_price",
  "params": {
    "symbol": "BTC",
    "currency": "USD"
  }
}

get_historical_prices

Retrieve historical price data

{
  "tool": "get_historical_prices",
  "params": {
    "symbol": "ETH",
    "days": 30,
    "interval": "daily"
  }
}

get_market_cap

Get market capitalization data

{
  "tool": "get_market_cap",
  "params": {
    "top": 100,
    "category": "defi"
  }
}

get_volume_analytics

Analyze trading volumes across exchanges

{
  "tool": "get_volume_analytics",
  "params": {
    "symbol": "USDT",
    "exchange": "all",
    "period": "24h"
  }
}

get_price_changes

Track price changes over multiple timeframes

{
  "tool": "get_price_changes",
  "params": {
    "symbols": ["BTC", "ETH", "BNB"],
    "timeframes": ["1h", "24h", "7d", "30d"]
  }
}

Keywords

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

License

MIT

Support

For issues and feature requests, please open an issue on GitHub.

About Hive Intelligence

Part of the Hive Intelligence suite of blockchain analytics MCP servers.

Releases

No releases published

Packages

No packages published