← 返回 MCP 列表

AgentLadle 财报分析 MCP
v1.0.0事实提取已验证远程调用最近验证 2026-06-06
该 MCP 服务通过将复杂的 PDF 财务报告转化为结构化的 API,提供给 AI 智能体使用。它支持公司档案检索、章节结构解析、核心财务报表起始页定位、全文关键字检索、以及按页阅读原始正文内容,助力智能体快速提取客观事实。
§ 快速开始
https://mcp.agentladle.com/mcp
通用配置
{
"mcpServers": {
"agentladle-mcp": {
"type": "streamableHttp",
"url": "https://mcp.agentladle.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}§ 工具参考
5 个工具
financialKeywordSearch
Full-text financial report search tool based on keywords to find content fragments related to specific topics in reports.
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| keywords | string[] | ✓ | List of keywords (1-5) |
| stockCode | string | — | Stock code, e.g., 000001. If not specified, searches the entire market |
| reportType | string | — | Report type, e.g., 2024a4 |
| matchMode | string | — | Match mode (ANY/ALL/MOST) |
| pageMin | number | — | Minimum page number |
| pageMax | number | — | Maximum page number |
| size | number | — | Number of fragments to return |
返回值:SearchResult[]
getFinancialReportPages
Gets the full content of pages within a page range in financial reports, supporting precise filtering by stock code and report type.
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| stockCode | string | ✓ | Stock code, e.g., 000001 |
| reportType | string | ✓ | Report type, e.g., 2024a4 |
| startPage | number | ✓ | Starting page number |
| pageCount | number | — | Number of pages to return, up to 5 |
返回值:PageContent[]
getFinancialStatementsStartPages
Queries the starting page numbers of the four consolidated financial statements in the financial report.
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| stockCode | string | ✓ | Stock code, e.g., 000001 |
| reportType | string | ✓ | Report type, e.g., 2024a4 |
| category | string | — | Statement type, e.g., Consolidated Balance Sheet |
返回值:StatementLocation[]
getReportChapters
Gets the complete chapter directory of the financial report.
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| stockCode | string | ✓ | Stock code, e.g., 000001 |
| reportType | string | ✓ | Report type, e.g., 2024a4 |
返回值:ReportOutline
searchCompanyInfo
Queries basic information of listed companies (stock abbreviation, code, listing date) by company name or stock code.
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| query | string | ✓ | Company name or stock code |
| size | number | — | Number of results to return |
返回值:CompanyInfo[]
§ 使用场景示例
完成配置后,直接向 AI 提问即可:
财报附注深度解析
"分析比亚迪2025年应收账款明细" 或 "查找宁德时代2025年资本开支去向"
报表重构与管理分析
"提取格力电器2025年资产负债表,并重构为管理用资产负债表"
全市场宏观主题扫描
"哪些公司在2025年报提到了‘固态电池’" 或 "全市场‘低空经济’相关业务进展"
LadleAgent