Factorhub Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Factorhub Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
<a id="中文"></a>
A 股量化数据 MCP 服务器 —— 让 Claude、Cursor 等 AI 工具直接查询因子数据、行情、估值、回测。
| 工具 | 说明 |
|---|---|
set_api_key | 设置你的 API Key(可选,不设置使用免费体验额度) |
list_factors | 因子列表(分类、搜索) |
get_factor_scores | 因子评分指标(年化收益、夏普、IC等) |
get_factor_nav | 因子净值曲线 |
get_market_daily | 个股日线行情(OHLCV) |
get_index_daily | 指数日线(上证、沪深300等) |
get_valuation | 估值指标(PE、PB、PS、股息率) |
get_stock_info | 个股基本信息 |
get_stock_list | 股票筛选 |
get_trade_dates | 交易日历 |
run_backtest | 量化策略回测 |
#### 方式一:免费体验(无需注册)
使用托管服务器,无需 API Key,自带免费额度(10 次/天)。
Claude Desktop —— 编辑 claude_desktop_config.json:
{
"mcpServers": {
"factorhub": {
"command": "npx",
"args": ["-y", "@smithery/cli@latest", "run", "factorhub"]
}
}
}或直接远程连接:
https://factorhub.cn/mcp/sse#### 方式二:安装到本地(使用自己的 API Key)
注册 factorhub.cn,在 API Key 管理页 生成 Key,获得更高额度。
pip install factorhub-mcpClaude Desktop —— 编辑 claude_desktop_config.json:
{
"mcpServers": {
"factorhub": {
"command": "factorhub-mcp",
"env": {
"FACTORHUB_API_KEY": "fh_你的密钥"
}
}
}
}Cursor —— 编辑 .cursor/mcp.json,格式同上。
Claude Code —— 运行:
claude mcp add factorhub -- env FACTORHUB_API_KEY=fh_你的密钥 factorhub-mcpOpenClaw —— 添加到技能配置:
providers:
factorhub:
type: mcp
command: factorhub-mcp
env:
FACTORHUB_API_KEY: "fh_你的密钥"#### 方式三:通过 Smithery 安装
在 Smithery 一键安装,自动配置到你的 AI 客户端。
配置完成后,直接对你的 AI 助手说:
也可以在对话中设置自己的 Key 来获得更多额度:
| 方案 | API 调用/天 | 回测/天 | 价格 |
|---|---|---|---|
| Free | 20 | 3 | ¥0 |
| Pro | 10,000 | 20 | ¥99/月 |
| Pro Max | 40,000 | 100 | ¥199/月 |
| Ultra | 不限 | 不限 | ¥899/月 |
升级方案:factorhub.cn/pricing
本 MCP 服务器是一个轻量客户端,通过 HTTPS 调用 FactorHub 公开 API,不直接访问数据库,不包含任何私有逻辑。
AI 助手 → MCP 协议 → factorhub-mcp → HTTPS → factorhub.cn/api/v1<a id="english"></a>
China A-share market data for AI agents. Query factor scores, market quotes, valuations, and run strategy backtests — all through the Model Context Protocol (MCP).
| Tool | Description |
|---|---|
set_api_key | Set your API key (optional, defaults to free trial quota) |
list_factors | List factors with category/search filters |
get_factor_scores | Factor metrics: annual return, Sharpe, max drawdown, IC, etc. |
get_factor_nav | Factor NAV curve for trend analysis |
get_market_daily | Stock daily OHLCV data |
get_index_daily | Index daily data (SSE, CSI 300, CSI 500, etc.) |
get_valuation | Valuation metrics: PE, PB, PS, dividend yield |
get_stock_info | Stock basic info |
get_stock_list | Stock screening by exchange/industry |
get_trade_dates | Trading calendar |
run_backtest | Strategy backtesting |
#### Option 1: Try Free (No Registration)
Use the hosted server directly — no API key needed, includes free trial quota (10 calls/day).
Claude Desktop — add to claude_desktop_config.json:
{
"mcpServers": {
"factorhub": {
"command": "npx",
"args": ["-y", "@smithery/cli@latest", "run", "factorhub"]
}
}
}Or connect directly via SSE:
https://factorhub.cn/mcp/sse#### Option 2: Install with Your API Key
For higher quotas, register at factorhub.cn and get your API key at the API Keys page.
pip install factorhub-mcpClaude Desktop — add to claude_desktop_config.json:
{
"mcpServers": {
"factorhub": {
"command": "factorhub-mcp",
"env": {
"FACTORHUB_API_KEY": "fh_your_api_key_here"
}
}
}
}Cursor — add to .cursor/mcp.json (same format as above).
Claude Code — run:
claude mcp add factorhub -- env FACTORHUB_API_KEY=fh_your_api_key_here factorhub-mcpOpenClaw — add to your skill config:
providers:
factorhub:
type: mcp
command: factorhub-mcp
env:
FACTORHUB_API_KEY: "fh_your_api_key_here"#### Option 3: Smithery
Install via Smithery for automatic setup with any MCP client.
Once configured, ask your AI assistant:
Set your own API key mid-conversation for higher quotas:
| Plan | API Calls/Day | Backtest/Day | Price |
|---|---|---|---|
| Free | 20 | 3 | ¥0 |
| Pro | 10,000 | 20 | ¥99/mo |
| Pro Max | 40,000 | 100 | ¥199/mo |
| Ultra | Unlimited | Unlimited | ¥899/mo |
Upgrade at factorhub.cn/pricing.
This MCP server is a thin client that calls the FactorHub public API. It does not access any database directly or contain proprietary logic.
AI Agent → MCP Protocol → factorhub-mcp → HTTPS → factorhub.cn/api/v1MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.