MCP Hub
Back to servers

SEC EDGAR MCP Server

Provides access to SEC filings and detailed XBRL financial data for all publicly traded U.S. companies. It enables users to search for company info, retrieve historical metrics like revenue and assets, and compare financial performance across different industries.

Updated
Jan 28, 2026

SEC EDGAR MCP Server

Access SEC filings and XBRL financial data for all publicly traded U.S. companies.

Data Available

  • Company Filings - 10-K (annual), 10-Q (quarterly), 8-K (current events), 4 (insider trades), etc.
  • Financial Data - Revenue, assets, liabilities, cash flow, and 1000+ other XBRL metrics
  • Company Info - CIK, ticker, SIC code, company name
  • Industry Comparisons - Compare financial metrics across all reporting companies

Setup

No API key required. Add to your MCP config:

{
  "sec-edgar": {
    "command": "node",
    "args": ["/path/to/sec-edgar/dist/index.js"],
    "env": {}
  }
}

Tools

search_companies

Search for companies by name or ticker to find their CIK.

ParameterRequiredDescription
queryYesCompany name or ticker (e.g., "Apple", "AAPL")
limitNoMax results (default 20)

Example: Find Microsoft

query: "Microsoft"

get_company_filings

Get recent SEC filings for a company.

ParameterRequiredDescription
companyYesTicker (AAPL), CIK (320193), or name
formTypeNoFilter by type: "10-K", "10-Q", "8-K", "4", etc.
limitNoMax filings (default 20)

Example: Get Apple's annual reports

company: "AAPL"
formType: "10-K"
limit: 5

Returns: Filing dates, accession numbers, and direct links to SEC documents

get_company_facts

Get all available XBRL financial metrics for a company.

ParameterRequiredDescription
companyYesTicker, CIK, or name
taxonomyNo"us-gaap" (default), "dei", "ifrs-full"

Returns: List of available metrics with latest values and data point counts

get_financial_metric

Get historical data for a specific financial metric.

ParameterRequiredDescription
companyYesTicker, CIK, or name
metricYesXBRL tag (e.g., "Revenues", "Assets")
taxonomyNo"us-gaap" (default), "dei", "ifrs-full"

Example: Get Apple's revenue history

company: "AAPL"
metric: "Revenues"

get_industry_metric

Get a metric across all companies for a period (industry comparison).

ParameterRequiredDescription
metricYesXBRL tag (e.g., "Revenues", "Assets")
yearYesCalendar year (e.g., 2023)
quarterNo"Q1", "Q2", "Q3", "Q4", or omit for annual
unitNo"USD" (default), "shares", "pure"
limitNoMax companies (default 50)

Example: Get all companies' 2023 revenues

metric: "Revenues"
year: 2023
limit: 100

list_common_metrics

List commonly used XBRL financial metrics with their tags.

ParameterRequiredDescription
categoryNo"income", "balance", "cash", "shares", or "all"

Common XBRL Metrics

Income Statement

TagDescription
RevenuesTotal revenues
CostOfRevenueCost of goods sold
GrossProfitGross profit
OperatingIncomeLossOperating income
NetIncomeLossNet income
EarningsPerShareBasicBasic EPS
EarningsPerShareDilutedDiluted EPS

Balance Sheet

TagDescription
AssetsTotal assets
AssetsCurrentCurrent assets
LiabilitiesTotal liabilities
StockholdersEquityShareholders' equity
CashAndCashEquivalentsAtCarryingValueCash
LongTermDebtLong-term debt

Cash Flow

TagDescription
NetCashProvidedByUsedInOperatingActivitiesOperating cash flow
NetCashProvidedByUsedInInvestingActivitiesInvesting cash flow
NetCashProvidedByUsedInFinancingActivitiesFinancing cash flow
PaymentsToAcquirePropertyPlantAndEquipmentCapEx

Rate Limits

  • 10 requests per second
  • Must include User-Agent header (built into this server)

Documentation

Reviews

No reviews yet

Sign in to write a review