Skip to main content
Glama
ApocData

ApocData MCP Server

Official
by ApocData

@apocdata/mcp-server

天启至数 ApocData 的 MCP(Model Context Protocol)Server。把 46 个免鉴权 A 股数据接口包装成 MCP tools,可在 Claude Desktop / Cursor / Cline / Continue 等任意 MCP client 中直接调用。

  • 数据源:https://data.tianqis.com/api/blade-dataplatform/open/data/*

  • 无需 API Key,无需注册(网关已配置 /open/** 免鉴权)

  • 自动透传 X-Tdc-* 元信息头(限流剩余/截断标志/错误码/缓存策略)

  • 46 工具覆盖:行情、估值、财务、股东、资金流、涨跌停、板块、公告、宏观、因子、综合画像


安装

方式 A:npx(推荐,零安装)

直接在 client 配置里写 npx -y @apocdata/mcp-server,无需手动 install。

方式 B:全局安装

npm install -g @apocdata/mcp-server
apocdata-mcp   # 可执行命令

Related MCP server: sfc-data-mcp

Client 配置示例

Claude Desktop

编辑 ~/Library/Application Support/Claude/claude_desktop_config.json(macOS)或 %APPDATA%\Claude\claude_desktop_config.json(Windows):

{
  "mcpServers": {
    "apocdata": {
      "command": "npx",
      "args": ["-y", "@apocdata/mcp-server"]
    }
  }
}

Cursor

~/.cursor/mcp.json

{
  "mcpServers": {
    "apocdata": {
      "command": "npx",
      "args": ["-y", "@apocdata/mcp-server"]
    }
  }
}

Cline / Continue / 其它 stdio MCP client

同上,传 command=npx, args=["-y","@apocdata/mcp-server"] 即可。

CLI flags

apocdata-mcp --version    # 打印版本号
apocdata-mcp --help       # 显示完整用法

信号

  • SIGTERM / SIGINT:优雅退出。等正在进行的请求完成(最多 5 秒),再关闭 transport 退出。

调试模式

环境变量 APOCDATA_DEBUG=1 会把每次 HTTP 调用的 path/status/meta 打到 stderr:

{
  "mcpServers": {
    "apocdata": {
      "command": "npx",
      "args": ["-y", "@apocdata/mcp-server"],
      "env": { "APOCDATA_DEBUG": "1" }
    }
  }
}

自定义 BASE URL

环境变量 APOCDATA_BASE_URL 可指向内网/私有部署:

"env": { "APOCDATA_BASE_URL": "https://intranet.example.com/api/blade-dataplatform/open/data" }

超时与重试

环境变量

默认

说明

APOCDATA_TIMEOUT_MS

30000

单次请求超时(毫秒),到时间 AbortController 中断

APOCDATA_MAX_RETRIES

2

5xx 或网络错误重试次数(不含首次),指数 backoff 500→1000→2000ms

4xx 不重试(业务错误重试无意义)。重试用尽后返回最后一次的 5xx 响应,或抛 NetworkError(网络异常)。


工具清单(46 个)

类别

工具

A. 行情与估值(10)

quote quotes daily stock stocks st ranking indexes index-daily hot-rank

B. 财务与股东(8)

financial express dividend holders holder-number share-float repurchase block-trade

C. 资金流向(8)

moneyflow hsgt hk-hold hk-daily margin dragon-tiger hot-money hot-money-detail

D. 涨跌停与板块(4)

limit-list limit-step sector-flow cyq-perf

E. 公告/调研(2)

announcements survey

F. 板块成分(4)

concepts concept-stocks ths-boards ths-board-stocks

G. 可转债(2)

convertible-bonds cb-price-chg

H. 因子(2)

factors tech-factor

I. 宏观(3)

macro macro-latest macro-definition

J. 日历(1)

calendar

K. 综合(2)

profile-full factor-categories

每个 tool 的入参/出参/默认值在 MCP 协议层用 JSON Schema 暴露,client 会自动展示。

MCP Resources

除工具外还暴露 3 个 markdown 文档,Agent 通过 resources/listresources/read 拉取:

URI

内容

apocdata://guide

全局接入指南:46 工具分组、symbol 格式、延迟/限流/错误协议、元信息头说明

apocdata://scenarios

场景速查:常见用户意图到工具组合的映射 + 反模式(避免串调 8 个接口)

apocdata://limits

limit/fields/compact 速查表:每个工具的默认值/上限/字段裁剪支持情况


用法示例(在 Claude 里直接问)

> 帮我看下贵州茅台最近 5 天行情
(Claude 调用 daily(symbol="600519", limit=5))

> 现在涨幅榜前 10 是哪些股票?
(Claude 调用 ranking(type="gainers", limit=10))

> 整理一下平安银行的综合画像
(Claude 调用 profile-full(symbol="000001"))

> CPI 最近一次数据是多少?
(Claude 调用 macro-latest(type="cpi"))

性能与限流

  • 单 IP 限流:60 req/min(响应头 X-Tdc-RateLimit-Remaining 透传剩余配额)

  • 缓存策略:盘中实时数据 5s、盘后日更 5min、元数据 1h(Cache-Control 头自动给)

  • limit 参数上限 50,超出会静默截断(看响应头 X-Tdc-Truncated

  • 大批量数据建议用 format=compact 列式输出,节省 60-70% token

  • 字段较多的接口(如 financial、announcements)支持 fields=... 裁剪

详细行为参考主 SKILL 文档:https://github.com/ApocData/ApocData-skill


开发

git clone https://github.com/ApocData/ApocData-skill.git
cd ApocData-skill/mcp-server
npm install
npm run build
npm start

源码结构:

src/
  index.ts     # MCP server 入口,stdio transport
  client.ts    # HTTP client,BASE_URL 调用 + meta 头提取
  tools.ts     # 46 个工具的配置表(声明式)

要加一个新接口:在 tools.ts 对应分组里加一条 ToolDef,重新 build 即可,无需改其它代码。

测试

npm test                 # build + 6 类测试全跑(需在 tianqi-mcp 目录执行)
npm run test:unit        # client 单测:超时/重试/URL 构造,不打外网
npm run test:contract    # 46 工具逐个真实 HTTP 调用(happy path)
npm run test:errors      # 错误路径:非法参数 / 不存在 symbol / 日期格式
npm run test:coverage    # 限流头/截断头/所有枚举值遍历
npm run test:e2e         # MCP 协议层:stdio JSON-RPC + isError + compact
npm run test:integration # 集成:mock HTTP + 子进程 server,验证 retries / timeout / --version / SIGTERM

六个脚本对应六种验证:

脚本

验证

client-unit-test.mjs

client 4xx 不重试、5xx 重试到成功/用尽、超时归一化、meta 头提取、URL 构造(mock fetch)

contract-test.mjs

所有 46 端点参数名/必填和后端 @RequestParam 一致;happy path 全部 200

error-path-test.mjs

业务错误用 HTTP 200 + success=false 表达;标记 PROD(已部署)/ LAG(源码已写、线上待发版)

coverage-test.mjs

限流头 / 截断头透传;所有 enum 工具(ranking / limit-list / sector-flow / hot-rank / margin / macro)的合法值全部遍历

mcp-e2e-test.mjs

MCP 协议正确:tools/list 46 个、isError 在 HTTP 4xx 和 success=false 都正确标记、compact 模式列式输出

integration-test.mjs

真实 backoff 耗时验证;真实 timeout 触发;--version / --help CLI;SIGTERM 空闲即时退出;SIGTERM in-flight 等待完成后退出

私有部署:APOCDATA_BASE_URL=http://your.host/path npm test

已知 LAG(线上待发版)

以下能力源码已实现(路线图 §2.1 / §5.1 / §5.3),但 data.tianqis.com 当前部署的版本尚未生效。后端 redeploy 后无需改 MCP server,行为自动恢复:

  • ranking / macro / macro/latest / macro/definition / sector-flow / hot-rank / margin 的非法 enum 校验

  • X-Tdc-Error-Code 响应头

  • X-Tdc-RateLimit-Remaining 响应头(限流剩余配额)

  • X-Tdc-Truncated 响应头(limit 超上限通知;注意 controller 内的 safeLimit 截断本身已生效,只是没有头通知)

  • format=compact 列式输出

  • /profile/full/factor-categories 两个端点本身


License

Apache-2.0

A
license - permissive license
-
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    Provides real-time stock market data and analysis from Chinese markets through 34 MCP tools, including K-line charts, technical indicators, fundamental analysis, financial metrics, and market insights without requiring authentication or API tokens.
    34
    53
    MIT
  • F
    license
    -
    quality
    D
    maintenance
    MCP server that wraps SFC financial data API into 32 tools for comprehensive A-share market data, including real-time quotes, rankings, limit-up statistics, news, themes, financials, charts, research reports, and watchlists.
  • A
    license
    -
    quality
    F
    maintenance
    Provides access to Chinese mainland financial data including A-stock quotes, financial statements, industry analysis, and macroeconomics through 42 MCP tools, with automatic data source fallback and no API key required.
    39
    Apache 2.0
  • A
    license
    A
    quality
    C
    maintenance
    Enables AI assistants to query real-time A-share stock data, including quotes, fund flows, sector flows, and K-line history, without needing an API key.
    5
    6
    MIT

View all related MCP servers

Related MCP Connectors

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ApocData/ApocData-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server