edgar_company_filings
Pack: edgar · Endpoint: https://gateway.pipeworx.io/edgar/mcp
Get recent SEC filings for a company by ticker (e.g., ‘AAPL’) or CIK number. Filter by form type (e.g., ‘10-Q’, ‘10-K’). Returns filing dates, types, and accession numbers.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ticker_or_cik | string | yes | Ticker symbol (e.g., “AAPL”) or CIK number (e.g., “320193”) |
form_type | string | no | Filter by SEC form type (e.g., “10-K”, “10-Q”, “8-K”). Omit for all types. |
limit | number | no | Max filings to return (1-40, default 20) |
Example call
Arguments
{
"ticker_or_cik": "AAPL",
"form_type": "10-Q",
"limit": 15
}
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_filings","arguments":{"ticker_or_cik":"AAPL","form_type":"10-Q","limit":15}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('edgar_company_filings', {
"ticker_or_cik": "AAPL",
"form_type": "10-Q",
"limit": 15
});
More examples
{
"ticker_or_cik": "320193",
"limit": 20
}
Response shape
Always returns: cik, company_name, tickers, sic_description, state_of_incorporation, fiscal_year_end, filter_form_type, filings
| Field | Type | Description |
|---|---|---|
cik | string | Company CIK number |
company_name | string | Official company name |
tickers | array | Associated ticker symbols |
sic_description | string | Standard Industrial Classification description |
state_of_incorporation | string | State where company is incorporated |
fiscal_year_end | string | Fiscal year end date |
filter_form_type | string | Form type filter applied or ‘all’ |
filings | array |
Full JSON Schema
{
"type": "object",
"properties": {
"cik": {
"type": "string",
"description": "Company CIK number"
},
"company_name": {
"type": "string",
"description": "Official company name"
},
"tickers": {
"type": "array",
"items": {
"type": "string"
},
"description": "Associated ticker symbols"
},
"sic_description": {
"type": "string",
"description": "Standard Industrial Classification description"
},
"state_of_incorporation": {
"type": "string",
"description": "State where company is incorporated"
},
"fiscal_year_end": {
"type": "string",
"description": "Fiscal year end date"
},
"filter_form_type": {
"type": "string",
"description": "Form type filter applied or 'all'"
},
"filings": {
"type": "array",
"items": {
"type": "object",
"properties": {
"accession_number": {
"type": "string",
"description": "SEC accession number"
},
"filing_date": {
"type": "string",
"description": "Date filing was submitted"
},
"form": {
"type": "string",
"description": "SEC form type"
},
"primary_document": {
"type": "string",
"description": "Primary document filename"
},
"document_url": {
"type": "string",
"description": "URL to access the filing document"
}
}
}
}
},
"required": [
"cik",
"company_name",
"tickers",
"sic_description",
"state_of_incorporation",
"fiscal_year_end",
"filter_form_type",
"filings"
]
}
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.