eastmoney-skills2mcp
Click on "Deploy 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., "@eastmoney-skills2mcpdiagnose stock 600519 (Maotai)"
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.
EastMoney Skills → MCP
基于 Model Context Protocol 的东方财富金融数据工具集,把东方财富 / 妙想的金融能力封装为 11 个 MCP Tool,可直接接入 Claude Code、Cursor 等 AI 客户端,用自然语言查询 A 股行情、财报、选股、热点、自选股、LOF 套利等。
功能(11 个 Tool)
Tool | 说明 | 依赖 |
| 综合诊股:评分、五维图、估值状态、公司概况 | 公开接口 |
| 财务数据:主要指标 / 利润表 / 现金流量表 | 公开接口 |
| 智能选股:ROE、净利润增长、营收增长、股息率、市值等多条件筛选 | 公开接口 |
| 热点发现:行业 / 概念 / 地域板块排行 | 公开接口 |
| 业绩点评:盈利预测 + 机构评级 | 公开接口 |
| 金融资讯搜索:自然语言查询公告 / 研报 / 新闻 | 妙想 API Key |
| 妙想金融数据查询:自然语言查行情 / 财务 / 估值等 | 妙想 API Key |
| 妙想智能选股:自然语言描述条件选股 | 妙想 API Key |
| 查询我的自选股列表 | 妙想 API Key |
| 管理自选股(自然语言添加 / 删除) | 妙想 API Key |
| LOF 基金套利日报:场内外溢 / 折价率排行 | 公开接口 |
标注 妙想 API Key 的工具需配置环境变量
MX_APIKEY(见下)。
Related MCP server: Stock Data MCP Server
获取妙想 API Key
妙想官方申请入口:https://marketing.dfcfs.com/views/finskillshub/indexZfdcxNpu?appfenxiang=1
申请后将获得的 Key 配置到环境变量 MX_APIKEY。
快速开始
# 安装依赖
npm install
# 编译
npm run build
# 配置环境变量
cp .env.example .env
# 编辑 .env 填入 MX_APIKEY、AUTH_TOKEN 等
# 启动服务
npm start服务默认监听 http://0.0.0.0:9000/mcp。
配置
通过 .env 文件或环境变量配置:
变量 | 默认值 | 说明 |
|
| 服务端口 |
| (空) | Bearer token 认证密钥,留空则不启用认证 |
| (空) | 东方财富妙想 API Key,妙想系列工具必需 |
|
| 允许访问的 Host(逗号分隔),公网 / 域名部署时按需添加 |
.env 示例:
PORT=9000
AUTH_TOKEN=your-secret-token
MX_APIKEY=your-miaoxiang-api-key接入 Claude Code
方式一:stdio 模式(推荐,一行命令添加)
无需单独启动服务,Claude Code 会自动拉起进程:
claude mcp add miaoxiang -- node /path/to/eastmoney-skills2mcp/dist/index.js --stdio加 -s user 全局生效(所有项目可用):
claude mcp add -s user miaoxiang \
--env MX_APIKEY=your-key \
--env AUTH_TOKEN=your-token \
-- node /path/to/eastmoney-skills2mcp/dist/index.js --stdio方式二:HTTP 模式(远程服务器部署)
需先启动服务(npm start),然后通过 URL 连接:
# 本机
claude mcp add --transport http miaoxiang http://localhost:9000/mcp \
--header "Authorization: Bearer your-secret-token"
# 远程服务器
claude mcp add --transport http -s user miaoxiang http://YOUR_SERVER:9000/mcp \
--header "Authorization: Bearer your-secret-token"方式三:配置文件
在项目根目录创建 .mcp.json:
{
"mcpServers": {
"miaoxiang": {
"url": "http://localhost:9000/mcp",
"headers": {
"Authorization": "Bearer your-secret-token"
}
}
}
}管理命令
claude mcp list # 查看已添加的 MCP 服务
claude mcp remove miaoxiang # 移除接入 Cursor
在 Cursor Settings → MCP 中添加:
{
"mcpServers": {
"miaoxiang": {
"url": "http://localhost:9000/mcp",
"headers": {
"Authorization": "Bearer your-secret-token"
}
}
}
}使用示例
在 AI 客户端中直接用自然语言调用:
"帮我诊断一下贵州茅台,代码 600519"
"查一下宁德时代最近 4 期的财务数据"
"筛选 ROE 大于 15%、市值超 500 亿的半导体股票"
"今天 A 股行业板块热点有哪些"
"中国平安的机构评级怎么样"
"把贵州茅台加入我的自选股"
"今天 LOF 基金有哪些溢价套利机会"
技术栈
Node.js 18+ / TypeScript 5.x
@modelcontextprotocol/sdkv1.x (Streamable HTTP transport)Express 5 + Zod
免责声明
本工具仅供学习交流,所有数据来自东方财富、新浪、天天基金等公开 / 第三方接口。使用者需自行遵守各数据源的服务条款与相关法律法规,本工具不提供任何投资建议,投资决策风险自负。
License
This server cannot be deployed
Maintenance
Related MCP Connectors
China A-share market data for research, backtesting and AI agents via MCP.
Real SEC, 13F, insider, congress & macro data your AI agent can cite. Hosted MCP, 24 tools.
MCP server giving AI agents one-connection access to China A-share market intelligence: financials,
Read-only China A-share data for AI agents: market, limit-up, capital flow and disclosures.
Related MCP Servers
- AlicenseCqualityDmaintenanceThe MCP provides comprehensive financial data and analytical tool support for AI large language models, specifically including the following five core data capabilities: Stock Analysis/ETF Analysis/Public Funds/News & Information/General Tools More Info: https://github.com/shenqingtech/deepq-finan4410 npm7ISC
- AlicenseNot gradedqualityDmaintenanceEnables querying financial data including stocks, indices, funds, and futures from Chinese, Hong Kong, and US markets. Provides real-time market information, financial indicators, news, and trading suggestions through Eastmoney and Sina data sources.8 npm3ISC
- AlicenseAqualityFmaintenanceProvides comprehensive stock market data (A-shares, Hong Kong, US) including real-time quotes, K-lines, technical indicators, sectors, futures, and options, with built-in AI Skills and MCP Prompts for financial analysis.6992 npm100ISC
- FlicenseNot gradedqualityCmaintenanceMCP server adapter that exposes A-share stock data tools, prompts, and resources via FastMCP, enabling querying of stocks, K-lines, financials, sectors, and market hot spots through natural language.-