Suanyo.

SUANYO DATA

Tools

公司披露、财务报表和公告检索,作为 MCP tools 交付。

Typed inputs, stable outputs, and source references for agent workflows.

工具按 agent 的动作组织。

先找到公司和文件,再读取财务字段或公告详情,最后把来源带回回答。工具之间共享同一套公司、时间和来源结构。

  • discover查找公司披露
  • read读取财务报表
  • search检索公告事件
  • reference回到原文来源

查询公司披露文件。

按证券代码、文件类型、报告期和日期范围读取公司披露列表。适合公告追踪、报告查找和研究助手的入口查询。

tool: get_company_filings

input:
  company: "600519"
  filing_type: "annual_report"
  period: "2025"

returns:
  company
  filing title
  filing type
  report period
  disclosed date
  source url

读取财务报表字段。

读取指定公司和报告期的利润表、资产负债表、现金流量表字段。返回数值、单位、币种、报告期和来源文件。

tool: get_financial_statement

input:
  company: "600519"
  period: "2025"
  statement: "income"
  fields: ["revenue", "net_profit"]

returns:
  metrics[]
  units
  period
  filing reference

检索公告事件。

按公司、关键词、公告类型和日期范围检索公告。返回标题、摘要字段、披露日期和原文链接。

tool: search_announcements

input:
  company: "600519"
  query: "分红"
  date_from: "2025-01-01"
  date_to: "2026-12-31"

returns:
  matching announcements
  disclosed date
  announcement type
  source url

读取公告详情和来源。

通过公告标识读取详情。agent 可以把公告标题、披露日期、正文摘录、结构化字段和来源链接带进后续回答。

  • inputannouncement_id
  • returnstitle / date / source
  • content正文摘录与结构化字段
  • follow-up继续读取财报或相关公告

响应结构服务于连续工作流。

工具返回的公司、文件、字段、时间和来源结构保持一致。agent 可以把一次调用的结果作为下一次调用的输入。

read docs