
China A-Share Financial Analysis MCP
v1.0.0Official AgentLadle remote MCP providing tools for China A-share financial reports, directory, page positioning, and full-text search. Free tier: 1.0 monthly credits on registration (refreshed monthly); 1 credit per 4000 requests (75% OFF promo). VIP from $9.9/quarter or credit top-ups. Requires agentladle.com API key.
§ Connection Config
§ Quickstart
Add the following to your MCP client configuration (Cursor, Claude Desktop, etc.):
Settings (top right) → Cursor Settings → Tools & MCP → New MCP Server. Paste the JSON below and save. Replace YOUR_API_KEY with your MCP key from agentladle.com profile.
MCP Client Configuration
{
"mcpServers": {
"agentladle-mcp": {
"type": "streamableHttp",
"url": "https://mcp.agentladle.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Config file locations
- Download Cursor: https://cursor.com/
- After setup, enable agentladle-mcp in Cursor chat to use the tools.
§ Tools Reference
5 tools
financialKeywordSearch
Full-text financial report search tool based on keywords to find content fragments related to specific topics in reports.
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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 |
getFinancialReportPages
Gets the full content of pages within a page range in financial reports, supporting precise filtering by stock code and report type.
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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 |
getFinancialStatementsStartPages
Queries the starting page numbers of the four consolidated financial statements in the financial report.
| Parameter | Type | Required | Description |
|---|---|---|---|
| stockCode | string | ✓ | Stock code, e.g., 000001 |
| reportType | string | ✓ | Report type, e.g., 2024a4 |
| category | string | — | Statement type, e.g., Consolidated Balance Sheet |
getReportChapters
Gets the complete chapter directory of the financial report.
| Parameter | Type | Required | Description |
|---|---|---|---|
| stockCode | string | ✓ | Stock code, e.g., 000001 |
| reportType | string | ✓ | Report type, e.g., 2024a4 |
searchCompanyInfo
Queries basic information of listed companies (stock abbreviation, code, listing date) by company name or stock code.
| Parameter | Type | Required | Description |
|---|---|---|---|
| query | string | ✓ | Company name or stock code |
| size | number | — | Number of results to return |
§ Examples
Once configured, you can ask the AI directly:
In-depth analysis of financial report notes
Analyze BYD's 2025 accounts receivable details
Use financialKeywordSearch for full-text search, then combine with getFinancialReportPages to extract the original pages for deep understanding.
Statement reconstruction and management analysis
Extract Gree Electric's 2025 balance sheet and reconstruct it into a management balance sheet
Use getFinancialStatementsStartPages to locate the starting page, then obtain the full statement via getFinancialReportPages for reconstruction.
Macro theme scanning across the entire market
Which companies mentioned 'solid-state battery' in their 2025 annual reports
Use financialKeywordSearch without specifying a company code to search across the market and find related companies.
LadleAgent