About
crypto-mcp-server is a cryptocurrency market data integration that provides real-time trading information and technical analysis by connecting to the Binance public API. It retrieves comprehensive market data for trading pairs and can deliver synthesized market insights with trend detection and momentum indicators. Key features include: - Real-time price queries for cryptocurrency trading pairs (BTC, ETH, SOL, etc.) with customizable quote currencies (USDT, BUSD, etc.) - 24-hour market statistics including price change percentages, trading volume, high/low prices, and weighted average prices - OHLCV/K-line data retrieval with configurable time intervals from 1 minute to 1 month for technical analysis - Order book depth data showing market liquidity, buy/sell pressure ratios, best bid/ask prices, and price spread analysis - Comprehensive symbol overviews combining real-time price data, trend classification (up/down/flat), trend strength scoring, moving averages, and RSI indicators - Dual-mode architecture supporting both MCP protocol integration with clients like Claude Desktop and ChatGPT, as well as a standalone Agent for direct LLM-powered market analysis
README
Crypto MCP Server & Agent
这是一个使用 TypeScript 编写的加密货币 Model Context Protocol (MCP) 服务器,通过 Binance 公共 API 提供实时行情查询能力。
现在项目包含两个部分: 1. MCP 服务器:提供加密货币行情查询工具,可以接入 ChatGPT、Claude Desktop、Strands 或任何支持 MCP 的客户端 2. Agent:一个智能 Agent,通过 LLM API 自动调用 MCP 工具来回答用户问题,无需手动配置 MCP 客户端
🔧 功能概览
当前实现了 5 个强大的工具,覆盖从基础价格查询到深度市场分析:
① get_price — 获取实时价格
获取指定交易对的实时价格。
输入参数:
symbol:交易对符号,如 BTC、ETH、SOL(不区分大小写)quote:报价货币,如 USDT、BUSD(默认 USDT)输出:
使用示例:
"BTC 现在多少钱?"
→ 调用 get_price({ symbol: "BTC", quote: "USDT" })
---
② get_24h_stats — 获取24小时统计数据
获取交易对过去24小时的完整统计数据,包括涨跌幅、成交量、最高/最低价等。
输入参数:
symbol:交易对符号(如 BTC、ETH)quote:报价货币(默认 USDT)输出:
使用示例:
"ETH 今天涨了多少?"
→ 调用 get_24h_stats({ symbol: "ETH" })
---
③ get_ohlcv — 获取K线数据
获取技术分析所需的K线(蜡烛图)数据,支持多种时间间隔。
输入参数:
symbol:交易对符号quote:报价货币(默认 USDT)interval:K线时间间隔(1m, 3m, 5m, 15m, 30m, 1h, 2h, 4h, 6h, 8h, 12h, 1d, 3d, 1w, 1M,默认 1h)limit:返回的K线数量(1-1000,默认 500)输出:
使用示例:
"给我 BTC 最近10小时的K线数据"
→ 调用 get_ohlcv({ symbol: "BTC", interval: "1h", limit: 10 })
---
④ get_symbol_overview — 智能综合概览 ⭐
智能组合工具,整合多个数据源,提供交易对的全面分析。
输入参数:
symbol:交易对符号quote:报价货币(默认 USDT)输出:
使用示例:
"BTC 今天怎么样?属于上涨还是盘整?"
→ 调用 get_symbol_overview({ symbol: "BTC" })
这个工具特别适合回答综合性的市场分析问题,模型可以基于返回的数据生成自然语言回答。
---
⑤ get_order_book — 获取交易深度(订单簿)
查看市场流动性、深度和买卖盘强度,适合做交易分析。
输入参数:
symbol:交易对符号quote:报价货币(默认 USDT)limit:订单深度数量(5-5000,默认 100)输出:
使用示例:
"BTC 的买卖盘深度怎么样?"
→ 调用 get_order_book({ symbol: "BTC", limit: 20 })
---
🤖 Agent 使用指南
什么是 Agent?
Agent 是一个智能助手,可以自动理解你的问题,选择合适的工具获取数据,然后生成自然语言回答。无需手动配置 MCP 客户端,开箱即用!
快速开始
1. 启动 MCP 服务器(HTTP 模式):
npm run build
MCP_TRANSPORT=http PORT=8081 npm start
2. 配置 Agent(创建并编辑 config.json):
# 复制配置文件示例
cp config.json.example config.json编辑 config.json,填入你的 API 配置
注意:config.json 已加入 .gitignore,不会被提交到版本控制
3. 运行 Agent:
npm run agent "BTC 现在多少钱?"
Agent 功能特点
DEBUG=1 查看详细的执行过程更多信息
config.js 文件AGENT_README.mdQUICKSTART.md---
📡 数据源说明
本项目使用 Binance 公开 REST API:
GET /api/v3/ticker/priceGET /api/v3/ticker/24hrGET /api/v3/klinesGET /api/v3/depth无需 API Key,无限制地调用基础行情数据。
---
📦 环境要求
---
🚀 安装与运行
1. 安装依赖
npm install
2. 编译项目
npm run build
3. 配置 Agent
Agent 通过 config.json 配置文件读取配置:
# 1. 复制配置文件示例
cp config.json.example config.json2. 编辑 config.json,填入你的配置
编辑 config.json 文件,设置以下参数:
- LLM_API_URL: LLM API 地址
- LLM_API_KEY: LLM API 密钥
- MCP_SERVER_URL: MCP 服务器地址
- MODEL: LLM 模型名称
配置文件说明(config.json):
LLM_API_URL: LLM API 地址(默认:https://llmapi.paratera.com)LLM_API_KEY: LLM API 密钥(重要:不要提交到版本控制)MCP_SERVER_URL: MCP 服务器地址(默认:http://localhost:8081/mcp)MODEL: LLM 模型名称(默认:gpt-3.5-turbo,根据实际 API 支持的模型调整)注意:
config.json 文件已加入 .gitignore,不会被提交到版本控制config.json 不存在,Agent 会使用默认配置并显示警告config.json.example 了解配置文件格式4. 运行 MCP 服务器
# HTTP 模式(用于 Agent)
MCP_TRANSPORT=http PORT=8081 npm start或 stdio 模式(用于 MCP 客户端)
npm start
5. 运行 Agent(推荐)
Agent 是最简单的使用方式,无需配置 MCP 客户端:
# 方式 1: 使用 npm 脚本
npm run agent "BTC 现在多少钱?"方式 2: 直接运行
node agent.js "ETH 今天涨了多少?"方式 3: 运行测试脚本
npm run test-agent
Agent 示例问题:
node agent.js "BTC 现在多少钱?"
node agent.js "ETH 今天涨了多少?"
node agent.js "BTC 今天怎么样?属于上涨还是盘整?"
node agent.js "BTC 的买卖盘深度怎么样?"
node agent.js "给我 BTC 最近10小时的K线数据"
6. 开发模式(热重载)
npm run dev
---
🧠 工作原理
MCP 服务器模式(传统方式)
1. MCP 客户端启动该服务器(通过 stdio 通信)
2. 用户问模型:"现在 BTC 价格多少?"
3. 模型判断 → 调用 MCP 工具:get_price
4. MCP 服务器访问 Binance API → 返回价格
5. 模型用结果生成自然语言回答
Agent 模式(推荐)
1. 启动 MCP 服务器(HTTP 模式,监听 8081 端口)
2. 用户运行 Agent:node agent.js "BTC 现在多少钱?"
3. Agent 获取 MCP 工具列表 → 转换为 LLM 工具格式
4. Agent 调用 LLM API → LLM 决定调用哪些工具
5. Agent 执行工具调用 → 从 MCP 服务器获取数据
6. Agent 将结果返回给 LLM → LLM 生成自然语言回答
Agent 的优势:
---
⚙️ MCP 客户端配置示
Related MCP Servers
AI Research Assistant
hamid-vakilzadeh
AI Research Assistant provides comprehensive access to millions of academic papers through the Semantic Scholar and arXiv databases. This MCP server enables AI coding assistants to perform intelligent literature searches, citation network analysis, and paper content extraction without requiring an API key. Key features include: - Advanced paper search with multi-filter support by year ranges, citation thresholds, field of study, and publication type - Title matching with confidence scoring for finding specific papers - Batch operations supporting up to 500 papers per request - Citation analysis and network exploration for understanding research relationships - Full-text PDF extraction from arXiv and Wiley open-access content (Wiley TDM token required for institutional access) - Rate limits of 100 requests per 5 minutes with options to request higher limits through Semantic Scholar
Linkup
LinkupPlatform
Linkup is a real-time web search and content extraction service that enables AI assistants to search the web and retrieve information from trusted sources. It provides source-backed answers with citations, making it ideal for fact-checking, news gathering, and research tasks. Key features of Linkup: - Real-time web search using natural language queries to find current information, news, and data - Page fetching to extract and read content from any webpage URL - Search depth modes: Standard for direct-answer queries and Deep for complex research across multiple sources - Source-backed results with citations and context from relevant, trustworthy websites - JavaScript rendering support for accessing dynamic content on JavaScript-heavy pages
Saju Insights
hjsh200219
Saju Insights provides personalized Korean traditional Four Pillars of Destiny (Saju) fortune-telling based on birth data. It calculates destiny charts using the eight characters (four heavenly stems and four earthly branches) derived from birth year, month, day, and hour. Key capabilities include: - Birth chart calculation with automatic True Solar Time adjustment (Jintaeyangsi -30min correction) - Fortune analysis covering personality, career, wealth, health, and love prospects - Relationship compatibility analysis comparing two people's Saju charts - 10-year luck cycle (Daewon) predictions for long-term planning - Yongsin (favorable element) guidance on lucky colors, directions, and career paths - Lunar-solar calendar conversion supporting 1900-2200 with leap month handling - Daily fortune readings and seasonal power calculations - Multiple interpretation schools including Ziping, DTS, and modern methodologies