edgar-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@edgar-mcpShow me Apple's latest 10-K text"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
edgar-mcp
An MCP server that gives a model working access to SEC EDGAR — company filings, filing text, and XBRL financial facts.
EDGAR will happily hand you a 9 MB filing and then throttle you for asking twice. The interesting part of this server is everything between the model and the wire.
What is actually implemented
ticker, CIK, or company name resolves to an EDGAR identity, with ambiguous names returning candidates instead of a silent wrong guess;
filing history spans EDGAR's overflow files, so companies past ~1000 filings don't get silently truncated to the recent page;
filing text arrives windowed with a
next_offsetcursor — a 10-K is ~206K characters and does not belong in a context window whole;inline-XBRL scaffolding is stripped, so extracted text starts at the prose and not at 11K characters of
false2025FY0000320193...;XBRL concepts come back as a time series, with a tag-discovery tool because nobody knows the right us-gaap tag name off the top of their head;
one metric can be ranked across every filer for a period via the frames API;
full-text search covers filings from 2001 onward;
requests are paced under SEC's 10 req/s ceiling even when a model fires a parallel burst of tool calls;
responses are cached per-host by the freshness rule that host actually supports.
flowchart LR
M["model tool call"] --> R["resolve ticker / CIK / name"]
R --> C{"cached?"}
C -->|"Archives: immutable"| D["disk, no network"]
C -->|"data.sec.gov: TTL fresh"| D
C -->|"stale or absent"| P["pacer @ 9 req/s"]
P --> E["EDGAR"]
E -->|"429 / 5xx"| P
E --> W["cache write"]
W --> X["iXBRL strip + window"]
D --> X
X --> MRelated MCP server: SEC EDGAR MCP
Measured, not implied
Apple M-series, macOS, Python 3.13, live EDGAR. Reproduce with make bench.
Check | Result |
Tests passing | 32 |
| 3.75 MB / 97 ms |
| 0.00 MB / 1.4 ms (68×) |
10-K document cold fetch | 1.52 MB / 154 ms |
10-K document warm read | 0.00 MB / 1.1 ms (138×) |
| 0.00 MB / 0.2 ms (755×) |
Sustained request rate | 9.2 req/s |
Peak requests in any 1s window | 10 (SEC ceiling: 10) |
iXBRL scaffolding removed from a 10-K | 11,303 chars |
Text extraction throughput | 23.4 MB/s |
Windows to read a full 10-K @ 40K | 6 |
Both the cache and pacer numbers above are post-fix. The first benchmark run reported a 3.75 MB "cache hit" that was really a full re-download, and 19 requests inside a one-second window against a 10 req/s limit. See DESIGN.md.
Where it loses
Freshness on
data.sec.govis a guess. That host sends noETagand noLast-Modified, so conditional requests are impossible and freshness falls back to a 1-hour TTL. A filing that lands mid-TTL is invisible until it expires. Passttl=0if you need read-your-writes.Windowing re-reads, it doesn't range-read. EDGAR honors HTTP
Rangeon Archives (verified:206,accept-ranges: bytes), but partial HTML can't be parsed reliably, so the whole document is fetched once and windowed from cache. The first call on a large filing pays the full download.Search is never cached. Results are query-shaped and EDGAR's full-text endpoint offers no validators, so every search is a live round trip against the 9 req/s budget.
The pacer is global. Ten companies queried in parallel serialize at ~9 req/s. Correct, but not fast.
XBRL values are consolidated totals. Dimensional breakdowns (by segment, by geography) exist in the data and this does not surface them.
Full-text search starts at 2001. Older filings are reachable through
list_filings, notsearch_filings.
Verify it
make test # 32 tests, no network
make bench # live EDGAR, prints the table aboveSetup
SEC requires a User-Agent carrying a real contact address and blocks requests without one. The server refuses to start rather than letting you discover that as a confusing 403 later.
export EDGAR_USER_AGENT="your-project you@example.com"Add to claude_desktop_config.json or .mcp.json:
{
"mcpServers": {
"edgar": {
"command": "uv",
"args": ["run", "--directory", "/path/to/edgar-mcp", "edgar-mcp"],
"env": { "EDGAR_USER_AGENT": "your-project you@example.com" }
}
}
}Tools
Tool | Purpose |
| ticker / CIK / name → EDGAR identity |
| filing history, filtered by form and date |
| windowed document text, follow |
| which XBRL tags a company actually reports |
| time series for one tag |
| one tag ranked across all filers for a period |
| full-text search, 2001→ |
| hit rate, requests, bytes downloaded |
A typical chain is lookup_company → list_filings → get_filing_text, or
list_concepts → get_concept when you want numbers rather than prose.
License
MIT
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityBmaintenanceMCP server providing read-only access to SEC EDGAR filings, allowing LLMs to look up companies, search filings, and retrieve securities offering data.Last updated31MIT
- AlicenseCqualityCmaintenanceMCP server for accessing SEC EDGAR filings. Connects AI assistants to company filings, financial statements, and insider trading data with exact numeric precision.Last updated21337AGPL 3.0
- Alicense-qualityBmaintenanceHosted MCP server that gives AI agents real-time access to SEC EDGAR filings search, 10-K/8-K reading, XBRL financial facts, and insider-trade (Form 4) alerts.Last updated281MIT
- Alicense-qualityDmaintenanceMCP server for SEC EDGAR that provides real-time access to filings, financial statements, and full-text search across all EDGAR documents.Last updatedApache 2.0
Related MCP Connectors
SEC XBRL MCP — wraps SEC EDGAR XBRL API (data.sec.gov)
Query SEC EDGAR filings, XBRL financials, and company data through MCP. STDIO & Streamable HTTP.
MCP server providing access to the Scorecard API to evaluate and optimize LLM systems.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/asp53826/edgar-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server