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-mcpSearch 10-K filings from 2024 that mention "cybersecurity risks""
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 lets Claude search the full text of SEC filings.
Ask Claude "which companies discussed agentic AI in their 10-Ks this year?" and it searches EDGAR directly — 235 real filings, with links.
https://github.com/user-attachments/assets/afa2e1e5-ee79-42ad-a736-6f016b8f6c64
The hardest problem
EDGAR filters by CIK, a ten-digit identifier that means nothing to a human and everything to the API. The obvious design accepts a CIK as a tool parameter and lets the model supply it. That fails in the worst possible way: a language model will confidently invent a CIK for any company it hasn't memorized, and a wrong company's filings look exactly like the right company's — correctly formatted, plausible, and completely wrong, with nothing to signal the error. So the tools accept a ticker or company name and resolve it in code against the SEC's own mapping file. Where the name is ambiguous — "American" matches 66 companies — the resolver returns the candidate list rather than picking the best-scoring match, and Claude asks which one you meant. The model handles the easy cases through context; the code catches the ones it gets wrong.
Related MCP server: EdgarTools MCP
Install
npm install -g @alinarashid/edgar-mcpAdd to claude_desktop_config.json:
{
"mcpServers": {
"edgar": {
"command": "npx",
"args": ["-y", "@alinarashid/edgar-mcp"],
"env": {
"SEC_USER_AGENT": "your-app your@email.com"
}
}
}
}SEC_USER_AGENT is required. The SEC rejects requests that don't identify
the caller, and a missing header returns 403 rather than an empty result.
Restart Claude Desktop.
Tools
search_filings — full-text search across every filing since 2001.
Filter by form type, date range, and company. Returns the filing company,
form, date, and a document link.
list_company_filings — one company's filings, newest first. Accepts a
ticker or name. Filter by form type, or you will mostly get Form 4 insider
trades.
Examples
Which companies mentioned "agentic AI" in their 10-K filings this year?
Show me American Airlines' recent quarterly reports.
Find 8-K filings from 2026 that mention "material weakness".
Known limits
Search returns metadata, not text. It tells you which filings match, not what they say. Follow the URL to read the language.
Ranking is keyword relevance, not company size. A short filing that repeats a phrase outranks a 300-page 10-K that mentions it twice.
Public companies only. Private companies file nothing with the SEC.
Searching within a company includes third-party filings tagged with that CIK, such as shareholder proposals filed by outside groups.
Notes
The full-text endpoint at efts.sec.gov is undocumented — the SEC
publishes no parameter list, response schema, or stability guarantee. This
package reads defensively and may need updating if the shape changes.
Requests are serialized to roughly 8 per second, under the SEC's published ceiling of 10.
License
MIT
Maintenance
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
- -licenseNot gradedqualityNot gradedmaintenanceEnables deep analysis of SEC EDGAR filings through universal company search, document content extraction, and advanced filing search capabilities. Provides AI-ready access to business descriptions, risk factors, financial statements, and full-text search across any public company's SEC documents.
- AlicenseNot gradedqualityDmaintenanceEnables LLMs to download, parse, and analyze SEC EDGAR filings, including 10-K/Q reports, XBRL financial statements, and insider trading data. It provides structured access to institutional holdings, corporate events, and financial facts for comprehensive investment research.2MIT
- AlicenseAqualityBmaintenanceQuery SEC EDGAR for company filings, financial data, and executive disclosures. Search by company name or ticker, retrieve 10-K/10-Q/8-K filings, and extract structured financials — backed by the official SEC EDGAR API, built for AI agents.4MIT
- AlicenseNot gradedqualityDmaintenanceEnables LLMs to access SEC EDGAR data: search filings, extract sections, pull structured financials, and track insider transactions.19MIT
Related MCP Connectors
SEC EDGAR for AI agents: company filings, financials and insider trades. No API keys.
SEC EDGAR filings for AI agents: company lookup, filings, financials, insider trades. No keys.
Certified SEC EDGAR fact memory for AI agents with zero hallucination and filing provenance.
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/alinarashid/edgar-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server