Ifind Mcp

v1.3.0

同花顺iFinD金融数据MCP工具。用于查询A股股票、公募基金、宏观经济和新闻资讯数据。当用户需要查询股票、基金、宏观经济指标或新闻资讯时使用。

1· 420·1 current·2 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the included materials: SKILL.md, API reference, and a helper script all describe calling iFinD MCP endpoints (stock, fund, edb, news). The required credential (Bearer token) is only described as a value to put into a local JSON config; no unrelated credentials or system access are requested.
Instruction Scope
Runtime instructions are limited to installing the mcporter client, placing an Authorization Bearer token in ~/.openclaw/mcporter.json, and invoking mcporter to call iFinD MCP endpoints. The provided script reads only the config file and calls mcporter; it does not read or transmit other system files. Minor note: the script suppresses stderr (2>/dev/null) which hides mcporter errors and may make troubleshooting harder but is not evidence of exfiltration.
Install Mechanism
This is an instruction-only skill (no packaged installer), which is low surface risk. However, it instructs the user to run `npm install -g mcporter` — installing a global npm package from the public registry carries typical supply-chain risk and requires trusting the mcporter package/maintainer. The skill does not vendor or pin a trusted source (no GitHub release link), so users should verify the mcporter package before installing.
Credentials
No environment variables or unrelated credentials are requested. The only secret the workflow needs is an iFinD MCP Authorization token, which the SKILL.md instructs the user to store in a local JSON config (~/.openclaw/mcporter.json). This is proportionate to querying a paid/secured API. Users should treat that file as sensitive.
Persistence & Privilege
The skill does not request permanent 'always' inclusion and does not modify other skills or system-wide settings. It only reads a config file in the user's home directory and invokes the mcporter binary; it does not install background services or persist additional credentials.
Assessment
This skill appears to do what it says: call iFinD MCP services via the mcporter client. Before installing or using it: 1) verify the authenticity of the mcporter npm package (publisher, repository, download counts, and source code) because the SKILL.md tells you to install it globally; 2) keep the ~/.openclaw/mcporter.json file private (it contains bearer tokens) and do not paste it in public places; 3) note the helper script expects mcporter at ~/.npm-global/bin/mcporter which may differ from your npm global bin—adjust PATH or the script accordingly; and 4) be aware the script suppresses errors (stderr) so if calls fail you may need to run mcporter manually to see diagnostics.

Like a lobster shell, security has layers — review code before you run it.

latestvk970yjmfpajw4yt7vkzka3rdb183hdzs
420downloads
1stars
4versions
Updated 3w ago
v1.3.0
MIT-0

iFind MCP Skill

同花顺 iFinD MCP 服务,提供专业金融数据查询。

首次使用指引

1. 安装 mcporter

# 安装 Node.js (如果没有)
# macOS: brew install node
# Linux: sudo apt install nodejs

# 安装 mcporter
npm install -g mcporter

2. 配置密钥

将密钥配置到 ~/.openclaw/mcporter.json(推荐,跨平台兼容):

mkdir -p ~/.openclaw
cat > ~/.openclaw/mcporter.json << 'EOF'
{
  "mcpServers": {
    "hexin-ifind-stock": {
      "url": "https://api-mcp.51ifind.com:8643/ds-mcp-servers/hexin-ifind-ds-stock-mcp",
      "headers": {
        "Authorization": "Bearer <你的密钥>"
      }
    },
    "hexin-ifind-fund": {
      "url": "https://api-mcp.51ifind.com:8643/ds-mcp-servers/hexin-ifind-ds-fund-mcp",
      "headers": {
        "Authorization": "Bearer <你的密钥>"
      }
    },
    "hexin-ifind-edb": {
      "url": "https://api-mcp.51ifind.com:8643/ds-mcp-servers/hexin-ifind-ds-edb-mcp",
      "headers": {
        "Authorization": "Bearer <你的密钥>"
      }
    },
    "hexin-ifind-news": {
      "url": "https://api-mcp.51ifind.com:8643/ds-mcp-servers/hexin-ifind-ds-news-mcp",
      "headers": {
        "Authorization": "Bearer <你的密钥>"
      }
    }
  }
}

密钥获取:在 iFinD 终端下载 MCP 配置文件(tonghuashun_token.rtf),提取 JSON 中的 Authorization 字段值。

3. 验证配置

mcporter --config ~/.openclaw/mcporter.json list
# 应显示 4 个健康的服务器

调用方式

# 使用配置文件的路径
mcporter --config ~/.openclaw/mcporter.json call <server>.<tool>

便捷脚本

# 修改脚本中的配置路径
sed -i 's|~/.config|~/.openclaw|' scripts/query.sh

./scripts/query.sh stock "贵州茅台"

MCP 服务器

服务器用途
hexin-ifind-stockA股股票数据
hexin-ifind-fund公募基金数据
hexin-ifind-edb宏观经济数据
hexin-ifind-news公告资讯

股票工具 (hexin-ifind-stock)

工具说明
get_stock_summary股票信息摘要
search_stocks智能选股
get_stock_perfomance历史行情与技术指标
get_stock_info基本资料查询
get_stock_shareholders股本结构与股东数据
get_stock_financials财务数据与指标
get_risk_indicators风险指标
get_stock_events公开披露事件
get_esg_dataESG评级

使用示例

# 查询股票概况
mcporter --config ~/.openclaw/mcporter.json call hexin-ifind-stock.get_stock_summary query:"贵州茅台"

# 智能选股
mcporter --config ~/.openclaw/mcporter.json call hexin-ifind-stock.search_stocks query:"新能源汽车行业市值大于1000亿"

# 历史行情
mcporter --config ~/.openclaw/mcporter.json call hexin-ifind-stock.get_stock_perfomance query:"宁德时代最近5日涨跌幅"

# 财务数据
mcporter --config ~/.openclaw/mcporter.json call hexin-ifind-stock.get_stock_financials query:"比亚迪2025年ROE"

基金工具 (hexin-ifind-fund)

工具说明
search_funds模糊基金名称匹配
get_fund_profile基金基本资料
get_fund_market_performance行情与业绩
get_fund_ownership份额与持有人结构
get_fund_portfolio投资标的与资产配置
get_fund_financials基金财务指标
get_fund_company_info基金公司信息

使用示例

# 查询基金
mcporter --config ~/.openclaw/mcporter.json call hexin-ifind-fund.search_funds query:"易方达科技ETF"

# 基金业绩
mcporter --config ~/.openclaw/mcporter.json call hexin-ifind-fund.get_fund_market_performance query:"富国天惠近一年收益率"

# 持仓明细
mcporter --config ~/.openclaw/mcporter.json call hexin-ifind-fund.get_fund_portfolio query:"中欧医疗健康混合A2025Q2持仓"

宏观/新闻工具

使用示例

# 宏观经济
mcporter --config ~/.openclaw/mcporter.json call hexin-ifind-edb.get_macro_data query:"中国GDP增速"

# 新闻资讯
mcporter --config ~/.openclaw/mcporter.json call hexin-ifind-news.get_company_news query:"华为最新公告"

API 文档

详细 API 说明见 references/API.md

Comments

Loading comments...