Query SEC EDGAR filings, XBRL financials, and company data through MCP. STDIO & Streamable HTTP.
- ✓Open-source license (Apache-2.0)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
git clone https://github.com/cyanheads/secedgar-mcp-server{
"mcpServers": {
"secedgar": {
"command": "node",
"args": ["/path/to/secedgar-mcp-server/dist/index.js"]
}
}
}Resumen de MCP Servers
<div align="center"> <h1>@cyanheads/secedgar-mcp-server</h1> <p><b>Query SEC EDGAR filings, XBRL financials, and company data through MCP. STDIO & Streamable HTTP.</b> <div>14 Tools (+1 opt-in) • 2 Resources • 1 Prompt</div> </p> </div> <div align="center"> [](https://www.npmjs.com/package/@cyanheads/secedgar-mcp-server) [](./LICENSE) [](https://github.com/users/cyanheads/packages/container/package/secedgar-mcp-server) [](https://modelcontextprotocol.io/) [](https://www.typescriptlang.org/) [](https://bun.sh/) </div> <div align="center"> [](https://github.com/cyanheads/secedgar-mcp-server/releases/latest/download/secedgar-mcp-server.mcpb) [](https://cursor.com/en/install-mcp?name=secedgar-mcp-server&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBjeWFuaGVhZHMvc2VjZWRnYXItbWNwLXNlcnZlciJdLCJlbnYiOnsiRURHQVJfVVNFUl9BR0VOVCI6IllvdXJOYW1lIHlvdXItZW1haWxAZXhhbXBsZS5jb20ifX0=) [](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22secedgar-mcp-server%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40cyanheads/secedgar-mcp-server%22%5D%2C%22env%22%3A%7B%22EDGAR_USER_AGENT%22%3A%22YourName%20your-email%40example.com%22%7D%7D) [](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) </div> <div align="center"> **Public Hosted Server:** [https://secedgar.caseyjhand.com/mcp](https://secedgar.caseyjhand.com/mcp) </div> --- ## Tools Twelve tools for querying SEC EDGAR data, plus three for SQL analytics over the DuckDB-backed canvas dataframes those tools materialize: | Tool | Description | |:---|:---| | `secedgar_company_search` | Find companies and retrieve entity info with optional recent filings | | `secedgar_search_filings` | Search EDGAR filings since 1993 — full-text (2001+) plus archive-backed browse for pre-2001 ranges | | `secedgar_get_filing` | Fetch a specific filing's metadata and document content | | `secedgar_get_financials` | Get historical XBRL financial data for a company | | `secedgar_get_snapshot` | One-call financial profile — the latest value of every supported concept, grouped by statement | | `secedgar_get_material_events` | 8-K filings with item codes decoded and filterable — earnings, officer changes, non-reliance | | `secedgar_get_insider_transactions` | Form 4 / 4-A insider transactions (buys, sells, grants, exercises) parsed from ownership XML | | `secedgar_get_institutional_holdings` | 13F-HR quarterly institutional holdings parsed from the information table | | `secedgar_find_holders` | Reverse 13F lookup — which institutional managers reported holding an issuer | | `secedgar_fetch_frames` | Fetch SEC XBRL frames for one concept × one period across all reporting companies | | `secedgar_compare_companies` | Compare named companies across several concepts, aligned on calendar periods | | `secedgar_search_concepts` | Discover supported XBRL concept names or reverse-lookup a raw tag | | `secedgar_dataframe_describe` | List canvas dataframes with provenance, TTL, and schema | | `secedgar_dataframe_query` | Run a single-statement SELECT across dataframes | | `secedgar_dataframe_drop` | Drop a canvas dataframe by name. Opt-in via `EDGAR_DATAFRAME_DROP_ENABLED=true` — off by default since TTL already handles cleanup | ### `secedgar_company_search` Entry point for most EDGAR workflows — resolve tickers, names, or CIKs to entity details. - Supports ticker symbols (`AAPL`, `VOO`), company names (`Apple`), or CIK numbers (`320193`) - ETFs and mutual funds resolve by ticker via `company_tickers_mf.json`; fund results include `series_id` and `class_id` for downstream scoping - Current and former company names both resolve (`Facebook` → Meta Platforms, `Square` → Block) - Near-match suggestions on zero-result name search (e.g. `Microsfot` → `MICROSOFT CORP / MSFT`) - Optionally includes recent filings with form type filtering - Date filtering (`filed_after` / `filed_before`) and under-filled form filters page into the older submissions archive, reaching filings that predate the ~1000-entry recent window (e.g. a 2005 10-K); `history_scanned_through` discloses the scan depth, and the full filtered history materializes as a `df_<id>` dataframe when it exceeds the inline `filing_limit` - Returns entity metadata: SIC code, exchanges, fiscal year end, state of incorporation --- ### `secedgar_search_filings` Search EDGAR filings since 1993. Full-text search covers 2001-present (the EFTS index floor); pre-2001 date ranges are served from the archives — pre-2001 full-text matching requires entity scope. - Exact phrases (`"material weakness"`), boolean operators (`revenue OR income`), wildcards (`account*`) - Entity targeting within query string (`cik:320193` or `ticker:AAPL`) — scoped server-side by CIK, so filings made under a former company name (same CIK) are included - Browse mode: omit `query` to list filings by form type (`forms=["S-1"]`) and/or entity (`ticker:`/`cik:`), optionally narrowed by date — a bare date range is not a valid search and must be paired with forms or entity targeting - Pre-2001 date ranges (back to 1993) route to the archives: an entity-scoped range reads the filer's full submissions history; an unscoped forms/date range browses the quarterly full-index. A range straddling 2001-01-01 is rejected with a split instruction, and pre-2001 full-text (no entity scope) is unsupported. Each row carries a `source` field (`efts` / `submissions` / `full-index`), preserved into the `df_<id>` dataframe - Date range filtering, form type filtering, pagination up to 10,000 results - Returns form distribution for narrowing follow-up searches - When the entity-scoped window exceeds the inline limit, the already-fetched EFTS window is materialized as a `df_<id>` dataframe — query it with `secedgar_dataframe_query` --- ### `secedgar_get_filing` Fetch a specific filing's metadata and document content by accession number. - Accepts accession numbers in dash or no-dash format - Converts HTML filings to readable plain text - Configurable content limit (1K–200K characters, default 50K) - Can fetch specific exhibits by document name - Binary entries — scanned pages, PDF exhibits, packaged archives and spreadsheets — are marked `binary` in the document catalog and rejected with a `binary_document` error instead of being returned as decoded bytes - **Offset paging** for large documents (10-K, S-1/A can exceed 1M chars): pass `next_offset` from a truncated response as `offset` on the next call to continue reading; first-page truncated responses include a detected `outline` (headings with offsets) for targeted navigation - **Section targeting** via the `section` param: jumps directly to a named heading by case-insensitive substring match (e.g. `"risk factors"`, `"item 7"`, `"certain relationships"`); on a miss, the error carries the detected outline so you can pick the correct heading - Extracted text is cached per `accession + document` (bounded LRU, 8 entries), making subsequent paged calls cheap --- ### `secedgar_get_financials` Get historical XBRL financial data for a company with friendly concept name resolution. - Friendly names like `"revenue"`, `"net_income"`, `"eps_diluted"` auto-resolve to correct XBRL tags - Handles historical tag changes (e.g., ASC 606 revenue recognition) - Automatic deduplication to one value per standard calendar period - Filter by annual, quarterly, or all periods - Optional `limit` caps the inline series to the most-recent N periods; the full series stays queryable via the `df_<id>` dataframe - Quarterly results carry a `caveats` entry naming every calendar quarter absent from the frame-tagged series — SEC reports fiscal Q4 as the 10-K residual, so the calendar quarter that fiscal Q4 spans has no discrete quarterly value (calendar-year filers included), and a filer whose other fiscal quarters span non-calendar durations loses a second quarter the same way - A further `caveats` entry when the concept resolved to an XBRL tag SEC has retired from the taxonomy — that only happens when no current tag reports for the filer, and the series can stop years short - See `secedgar://concepts` resource for the full mapping --- ### `secedgar_get_snapshot` Build a company financial profile in one call instead of a run of `secedgar_get_financials` calls. - Reads the filer's complete companyfacts payload once, then resolves every supported concept against it - Same frame dedup and tag priority as `secedgar_get_financials`, so the two agree for any concept they both cover - Duration concepts (income statement, cash flow, per-share) report their latest full year and latest single quarter; balance-sheet and entity-info concepts report their latest point-in-time value - Concepts the filer does not report are listed under `gaps` with the XBRL tags that were tried — never zero-filled or interpolated - IFRS filers resolve through the mapped IFRS tag variants via `taxonomy: "ifrs-full"`, which covers the income statement, balance sheet
Lo que la gente pregunta sobre secedgar-mcp-server
¿Qué es cyanheads/secedgar-mcp-server?
+
cyanheads/secedgar-mcp-server es mcp servers para el ecosistema de Claude AI. Query SEC EDGAR filings, XBRL financials, and company data through MCP. STDIO & Streamable HTTP. Tiene 7 estrellas en GitHub y se actualizó por última vez today.
¿Cómo se instala secedgar-mcp-server?
+
Puedes instalar secedgar-mcp-server clonando el repositorio (https://github.com/cyanheads/secedgar-mcp-server) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar cyanheads/secedgar-mcp-server?
+
Nuestro agente de seguridad ha analizado cyanheads/secedgar-mcp-server y le ha asignado un Trust Score de 87/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene cyanheads/secedgar-mcp-server?
+
cyanheads/secedgar-mcp-server es mantenido por cyanheads. La última actividad registrada en GitHub es de today, con 3 issues abiertos.
¿Hay alternativas a secedgar-mcp-server?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega secedgar-mcp-server en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/cyanheads-secedgar-mcp-server)<a href="https://claudewave.com/repo/cyanheads-secedgar-mcp-server"><img src="https://claudewave.com/api/badge/cyanheads-secedgar-mcp-server" alt="Featured on ClaudeWave: cyanheads/secedgar-mcp-server" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
The fastest path to AI-powered full stack observability, even for lean teams.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!