Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
meission avatar

Eastmoney Financial Search

  • 456 installs
  • 15 repo stars
  • Updated March 19, 2026
  • meission/eastmoney

eastmoney_financial_search is an agent skill that queries East Money financial search APIs for developers building fintech agents who need stocks, funds, indices, news, research reports, and policy results without stale

About

eastmoney_financial_search is a meission/eastmoney skill that connects agents to East Money Miaoxiang financial search for time-sensitive market information. It targets tasks needing news, announcements, research reports, policies, trading rules, event analysis, and other non-static finance answers where generic web search may return outdated or non-authoritative sources. The workflow checks an EASTMONEY_APIKEY environment variable, then POSTs JSON {"query": "..."} to https://mkapi2.dfcfs.com/finskillshub/api/claw/news-search with the apikey header. Developers use it while building fintech agents, market dashboards, or automated investment research pipelines that must pull East Money stock, fund, and index search results programmatically. The parent eastmoney skills family also includes financial data and stock-selection companions, but this skill focuses on search-side source filtering for timely finance content. Reach for eastmoney_financial_search when agents answer Chinese-market questions that require current announcements or research rather than model memory alone.

  • East Money securities and fund search
  • Agent-callable Chinese market lookups
  • Covers stocks, funds, indices, and entities
  • Cuts custom scraping for A-share data
  • Fits fintech SaaS and trading tooling

Eastmoney Financial Search by the numbers

  • 456 all-time installs (skills.sh)
  • +4 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #223 of 1,106 Finance & Trading skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/meission/eastmoney --skill eastmoney_financial_search

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs456
repo stars15
Last updatedMarch 19, 2026
Repositorymeission/eastmoney

How do agents search East Money financial news?

Pull East Money stock, fund, and index search results while building fintech agents, market dashboards, or automated investment research pipelines.

Who is it for?

Developers building fintech agents or market dashboards that need authoritative East Money search results via API key authenticated POST requests.

Skip if: Teams without an East Money API key or no Chinese-market finance search requirements should skip eastmoney_financial_search.

When should I use this skill?

User builds fintech agents, market research pipelines, or asks for timely East Money news, reports, policies, or index/stock search results.

What you get

East Money news-search JSON responses with filtered finance news, announcements, research reports, and policy results for agent pipelines.

  • News-search API responses
  • Filtered finance research results
  • Agent-ready market event summaries

By the numbers

  • Uses POST endpoint mkapi2.dfcfs.com/finskillshub/api/claw/news-search
  • Requires EASTMONEY_APIKEY environment variable for API authentication

Files

SKILL.mdMarkdownGitHub ↗

东方财富资讯搜索skill (eastmoney_financial_search)

根据用户问句搜索相关金融资讯,获取与问句相关的资讯信息(如研报、新闻、解读等),并返回可读的文本内容,可选保存到工作目录。

使用方式

1. 首先检查环境变量EASTMONEY_APIKEY是否存在:

   echo $EASTMONEY_APIKEY

如果不存在,提示用户在东方财富Skills页面(https://marketing.dfcfs.com/views/finskillshub/indexuNdYscEA?appfenxiang=1)获取apikey并设置到环境变量。

⚠️ 安全注意事项

>

- 外部请求: 本 Skill 会将用户的查询关键词(Keyword)发送至东方财富官方 API 接口 (mkapi2.dfcfs.com) 进行解析与检索。
- 数据用途: 提交的数据仅用于资讯搜索,不包含个人隐私信息。
- 凭据保护: API Key 仅通过环境变量 EASTMONEY_APIKEY 在服务端或受信任的运行环境中使用,不会在前端明文暴露。

2. 使用POST请求调用接口:

   curl -X POST --location 'https://mkapi2.dfcfs.com/finskillshub/api/claw/news-search' \
   --header 'Content-Type: application/json' \
   --header "apikey: $EASTMONEY_APIKEY" \
   --data '{"query":"用户的查询内容"}'

适用场景

当用户查询以下类型的内容时使用本skill:

  • 个股资讯:如"格力电器最新研报"、"贵州茅台机构观点"
  • 板块/主题:如"商业航天板块近期新闻"、"新能源政策解读"
  • 宏观/风险:如"A股具备自然对冲优势的公司 汇率风险"、"美联储加息对A股影响"
  • 综合解读:如"今日大盘异动原因"、"北向资金流向解读"

返回说明

字段路径简短释义
title信息标题,高度概括核心内容
secuList关联证券列表,含代码、名称、类型等
secuList[].secuCode证券代码(如 002475)
secuList[].secuName证券名称(如立讯精密)
secuList[].secuType证券类型(如股票 / 债券)
trunk信息核心正文 / 结构化数据块,承载具体业务数据

示例

import os
import requests

api_key = os.getenv("EASTMONEY_APIKEY")
if not api_key:
    raise ValueError("请先设置EASTMONEY_APIKEY环境变量")

url = "https://mkapi2.dfcfs.com/finskillshub/api/claw/news-search"
headers = {
    "Content-Type": "application/json",
    "apikey": api_key
}
data = {
    "query": "立讯精密的资讯"
}

response = requests.post(url, headers=headers, json=data)
response.raise_for_status()
result = response.json()
print(result)

Related skills

How it compares

Pick eastmoney_financial_search over generic web search skills when finance answers must come from East Money authoritative sources with API-key auth.

FAQ

What API does eastmoney_financial_search call?

eastmoney_financial_search sends authenticated POST requests with JSON query payloads to https://mkapi2.dfcfs.com/finskillshub/api/claw/news-search using the EASTMONEY_APIKEY header for East Money Miaoxiang finance search.

What data types does eastmoney_financial_search retrieve?

eastmoney_financial_search retrieves time-sensitive finance information such as news, announcements, research reports, policies, trading rules, event analysis, and market search results for stocks, funds, and indices.

What credential does eastmoney_financial_search require?

eastmoney_financial_search requires an EASTMONEY_APIKEY environment variable obtained from the East Money skills hub before agents can call the news-search API endpoint.

Finance & Tradingfinancepricing

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.