edgar_company_facts
Pack: edgar · Endpoint: https://gateway.pipeworx.io/edgar/mcp
Get structured financial data for a company by CIK number. Returns revenue, net income, assets, liabilities, and other key metrics with annual and historical values.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
cik | string | yes | Company CIK number (e.g., “320193” for Apple). Use edgar_ticker_to_cik to look up if needed. |
Example call
Arguments
{
"cik": "320193"
}
curl
curl -X POST https://gateway.pipeworx.io/edgar/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"edgar_company_facts","arguments":{"cik":"320193"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('edgar_company_facts', {
"cik": "320193"
});
Response shape
Always returns: cik, company_name, key_financials, available_concepts
| Field | Type | Description |
|---|---|---|
cik | string | Company CIK number |
company_name | string | Official company name |
key_financials | object | Key financial metrics with most recent annual values |
available_concepts | number | Total number of available US-GAAP concepts |
Full JSON Schema
{
"type": "object",
"properties": {
"cik": {
"type": "string",
"description": "Company CIK number"
},
"company_name": {
"type": "string",
"description": "Official company name"
},
"key_financials": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"label": {
"type": "string",
"description": "Human-readable metric label"
},
"most_recent_annual": {
"type": [
"object",
"null"
],
"properties": {
"year": {
"type": "number",
"description": "Fiscal year"
},
"value": {
"type": "number",
"description": "Metric value"
},
"filed": {
"type": "string",
"description": "Date filing was submitted"
}
}
}
}
},
"description": "Key financial metrics with most recent annual values"
},
"available_concepts": {
"type": "number",
"description": "Total number of available US-GAAP concepts"
}
},
"required": [
"cik",
"company_name",
"key_financials",
"available_concepts"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"edgar": {
"url": "https://gateway.pipeworx.io/edgar/mcp"
}
}
}
See Getting Started for client-specific install steps.