一键导入
jin10
Query Jin10 quotes, K-line candles, flash headlines, news, and economic calendar data. 适用于黄金/白银/原油/外汇报价、K线、财经快讯、资讯详情、财经日历、非农和央行事件等请求。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Query Jin10 quotes, K-line candles, flash headlines, news, and economic calendar data. 适用于黄金/白银/原油/外汇报价、K线、财经快讯、资讯详情、财经日历、非农和央行事件等请求。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | jin10 |
| description | Query Jin10 quotes, K-line candles, flash headlines, news, and economic calendar data. 适用于黄金/白银/原油/外汇报价、K线、财经快讯、资讯详情、财经日历、非农和央行事件等请求。 |
| version | 1.0.0 |
| author | Jin10 Skill Maintainers |
| platforms | ["macos","linux"] |
| metadata | {"hermes":{"tags":["finance","markets","news","calendar","china"],"category":"finance","requires_toolsets":["terminal"]}} |
致谢:感谢金十数据提供 MCP 服务。本 skill 仅进行使用方式转换,无意替代或模仿金十数据官方服务。
获取地址:
https://mcp.jin10.com/app
Use this skill to access Jin10 market data through the bundled Python CLI.
Assume the skill is installed at ~/.hermes/skills/jin10. If the user installs it through skills.external_dirs, keep the same relative layout and substitute the actual root path.
Before use, make sure a local Jin10 token file exists at ~/.config/jin10/api_token. The file should contain only the token string.
python3 ~/.hermes/skills/jin10/scripts/jin10.py --format json codes
python3 ~/.hermes/skills/jin10/scripts/jin10.py --format json quote XAUUSD
python3 ~/.hermes/skills/jin10/scripts/jin10.py --format json kline XAUUSD --time 1h --count 20
python3 ~/.hermes/skills/jin10/scripts/jin10.py --format json flash search "美联储"
python3 ~/.hermes/skills/jin10/scripts/jin10.py --format json news search "原油"
python3 ~/.hermes/skills/jin10/scripts/jin10.py --format json news get 123456
python3 ~/.hermes/skills/jin10/scripts/jin10.py --format json calendar --high-importance
Read references/api-contract.md when you need the field contract or selection rules.
quote、kline、flash、news 还是 calendar。--format json,只有在用户明确需要可读块状文本时才切到 --format text。codes,再跑 quote <CODE> 或 kline <CODE> [--time ...] [--count ...]。flash search <关键词>;只有顺序浏览最新流时才用 flash list 和 --cursor。news search <关键词> 或 news list 找到条目,再用 news get <id> 取详情。calendar;按主题筛选时用 --keyword;只要重磅事件时用 --high-importance。scripts/jin10.py。~/.config/jin10/api_token 不存在或为空,命令会直接失败。kline 只传 code、time、count 三个已声明参数;不要传 offset 等未声明字段。flash search 用于关键词过滤;需要翻页时应使用 flash list --cursor ...。news get 必须先拿到有效的文章 id。0。quote: data.code、data.name、data.timekline: data.code、data.name、data.klines[]flash / news 列表:data.itemsnews get: data.id、data.title、data.contentcalendar: datacode 与目标品种一致。has_more 和 next_cursor。