get_company_financials
Pack: sec-xbrl · Endpoint: https://gateway.pipeworx.io/sec-xbrl/mcp
High-level summary of a public US company’s annual (10-K) financials: revenue, net income, total assets, cash, EPS, etc. Returns clean numerical values with the XBRL tag used and the period-end date. By default returns the most recent fiscal year; pass fiscal_year_end to get a specific year (e.g. “2024-12-31” for Tesla FY2024 or just “2024” to auto-match the year). Prefer this over get_company_facts/get_company_concept for any single-company financial snapshot question. Pass a CIK (e.g. “320193”) or a ticker (e.g. “AAPL”; auto-resolves to CIK).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
company | string | yes | CIK (e.g., “320193”, “0000320193”) OR ticker symbol (e.g., “AAPL”, “TSLA”, “MSFT”). Ticker is auto-resolved to CIK via SEC EDGAR. |
fiscal_year_end | string | no | Optional. Pass a 4-digit fiscal year (“2024”) to get values from any 10-K period ending in that calendar year, OR a specific period-end date (“2024-12-31”). Omit to get the most recent fiscal year. |
Example call
curl -X POST https://gateway.pipeworx.io/sec-xbrl/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_company_financials","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"sec-xbrl": {
"url": "https://gateway.pipeworx.io/sec-xbrl/mcp"
}
}
}
See Getting Started for client-specific install steps.