← Back to MCP list
icon

China A-Share Financial Analysis MCP

v1.0.0
Data IngestionRecommendedRemoteFinance

Official 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

Transport Type: remote
https://mcp.agentladle.com/mcp
Authorization: Bearer {env:AGENTLADLE_API_KEY}
AgentLadle API KeyRequired

API Key obtained from agentladle.com

Type: headerApply →

§ 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.
View full setup guide →

§ Tools Reference

5 tools

financialKeywordSearch

Full-text financial report search tool based on keywords to find content fragments related to specific topics in reports.

ParameterTypeRequiredDescription
keywordsstring[]List of keywords (1-5)
stockCodestringStock code, e.g., 000001. If not specified, searches the entire market
reportTypestringReport type, e.g., 2024a4
matchModestringMatch mode (ANY/ALL/MOST)
pageMinnumberMinimum page number
pageMaxnumberMaximum page number
sizenumberNumber of fragments to return
Returns:SearchResult[]

getFinancialReportPages

Gets the full content of pages within a page range in financial reports, supporting precise filtering by stock code and report type.

ParameterTypeRequiredDescription
stockCodestringStock code, e.g., 000001
reportTypestringReport type, e.g., 2024a4
startPagenumberStarting page number
pageCountnumberNumber of pages to return, up to 5
Returns:PageContent[]

getFinancialStatementsStartPages

Queries the starting page numbers of the four consolidated financial statements in the financial report.

ParameterTypeRequiredDescription
stockCodestringStock code, e.g., 000001
reportTypestringReport type, e.g., 2024a4
categorystringStatement type, e.g., Consolidated Balance Sheet
Returns:StatementLocation[]

getReportChapters

Gets the complete chapter directory of the financial report.

ParameterTypeRequiredDescription
stockCodestringStock code, e.g., 000001
reportTypestringReport type, e.g., 2024a4
Returns:ReportOutline

searchCompanyInfo

Queries basic information of listed companies (stock abbreviation, code, listing date) by company name or stock code.

ParameterTypeRequiredDescription
querystringCompany name or stock code
sizenumberNumber of results to return
Returns:CompanyInfo[]

§ 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.