fd_filings

Pack: financial-datasets · Endpoint: https://gateway.pipeworx.io/financial-datasets/mcp

Recent SEC filings for — the company’s latest EDGAR filings (10-K, 10-Q, 8-K, 20-F, 6-K). Returns filing type, report period, filing date, and document URL. Optionally filter by filing_type. Example: fd_filings({ ticker: “AAPL”, filing_type: “8-K”, limit: 20, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
tickerstringyesStock ticker symbol, e.g. “AAPL”
filing_typestringnoOptional filter, e.g. “10-K”, “10-Q”, “8-K”, “20-F”, “6-K”
limitintegernoMax filings to return (default 20)
_apiKeystringyesFinancial Datasets API key (from financialdatasets.ai)

Example call

Arguments

{
  "ticker": "AAPL",
  "_apiKey": "your-financial-datasets-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/financial-datasets/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fd_filings","arguments":{"ticker":"AAPL","_apiKey":"your-financial-datasets-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('fd_filings', {
  "ticker": "AAPL",
  "_apiKey": "your-financial-datasets-api-key"
});

More examples

{
  "ticker": "MSFT",
  "filing_type": "10-K",
  "limit": 10,
  "_apiKey": "your-financial-datasets-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "financial-datasets": {
      "url": "https://gateway.pipeworx.io/financial-datasets/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 19, 2026