SEC EDGAR MCP Server
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., "@SEC EDGAR MCP Serverget financial statements for AAPL"
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.
SEC EDGAR MCP Server
A Model Context Protocol (MCP) server that exposes endpoints to retrieve SEC company profiles, historic filing listings, and structured XBRL financial statements directly into AI environments. Built with Python, FastMCP, and edgartools.
βοΈ Configuration & Setup
Clone the Repository:
git clone https://github.com/MakAcp/sec-insight-mcp.git cd sec-insight-mcpCreate and Activate Virtual Environment:
Windows:
python -m venv .venv .\.venv\Scripts\activatemacOS/Linux:
python3 -m venv .venv source .venv/bin/activate
Install Dependencies: Install the project in editable mode so dependencies listed in
pyproject.tomlare correctly resolved:pip install -e .Configure Environment: Create a
.envfile in the root directory (refer to.env.example):SEC_EDGAR_USER_AGENT="YourName (your.email@example.com)"Note: SEC compliance requires a valid name and email address in the User-Agent header. Program requests will be blocked if this is not provided.
Related MCP server: SEC EDGAR MCP
π οΈ Run & Test
Run the MCP Server (Stdio Mode):
Windows:
.\.venv\Scripts\python server.pymacOS/Linux:
python server.py
Run the Automated Test Suite:
Windows:
.\.venv\Scripts\python tests/run_tests.pymacOS/Linux:
python tests/run_tests.py
π MCP Tools Legend
Below are the tool endpoints exposed by the server for integration with Cursor, Claude Desktop, or other MCP clients:
1. health_check
Perform a connection and compliance check on the server.
Parameters: None
Returns:
str(Confirmation message containing the active SEC User-Agent).
2. get_company_profile
Retrieve administrative and registration metadata for a target company.
Parameters:
ticker_or_cik(required,str): The company's ticker symbol (e.g.AAPL,SOFI) or 10-digit CIK (e.g.0000320193).
Returns:
str(Markdown profile table containing Official Name, CIK, Tickers, Industry SIC, shares outstanding, filer category, and addresses).
3. list_filings
Search and list recent filings submitted by a company.
Parameters:
ticker_or_cik(required,str): The ticker symbol or CIK.form(optional,str): Filter by form type (e.g.10-K,10-Q,8-K,4). Defaults to no filter.limit(optional,int): Max number of filings to return (default:10, max:100).year(optional,int): Filter by filing calendar year.
Returns:
str(Markdown table listing Accession Numbers, Dates, Forms, Period of Report, formatted File Sizes, and XBRL structures).
4. get_financial_statements
Extract the Consolidated Balance Sheets, Income Statements (Operations), and Cash Flow Statements from a company's XBRL report.
Parameters:
ticker_or_cik(optional,str): The ticker or CIK. If provided alone, extracts statements from the latest report.accession_number(optional,str): Specific 20-character accession number (e.g.,0000320193-25-000079). If provided, extracts statements from that specific filing.
Returns:
str(Concatenated Markdown sheets detailing account lines, values, and comparative periods).
5. get_filing_section
Extract a specific text section (e.g. Item 1A Risk Factors, Item 7 MD&A, Item 1 Business Overview) from a target filing, with built-in token-bloat truncation protections.
Parameters:
ticker_or_cik(optional,str): The ticker or CIK. If provided alone, extracts section from the latest 10-K or 10-Q filing.accession_number(optional,str): Specific 20-character accession number.section_name(optional,str): The name/ID of the section to retrieve (e.g.,Item 1A,Item 7,Item 1). Defaults toItem 1A.
Returns:
str(Markdown-formatted text section, truncated to a maximum of 12,000 characters with direct SEC filing index link fallback).
π MCP Prompts Legend
Below are the custom prompt templates registered on the server for user invocation:
1. compare_competitors
Renders a structured plan to perform a side-by-side comparative analysis of two competing companies.
Parameters:
ticker_a(required,str): The first company's ticker symbol.ticker_b(required,str): The second company's ticker symbol.
Flow: Instructs the client model to retrieve profiles, Business Overviews (Item 1), and financial statements for both companies, compiling a comparative markdown table covering segment overlay, revenue, strategic advantages, and leverage.
2. audit_investment_risks
Directs the client model to act as a Senior Risk Analyst and perform a comprehensive risk and financial health audit on a target company.
Parameters:
ticker(required,str): The company's ticker symbol.
Flow: Instructs the model to retrieve the company's profile, Item 1A Risk Factors, and financial statements to output an Executive Summary risk assessment, top 3 operational hazards, financial health check, and management-to-balance-sheet red flags evaluation.
3. analyze_earnings_quality_ttm
Directs the client model to act as a Forensic Accountant and audit the quality of earnings of a company over the Trailing Twelve Months (TTM).
Parameters:
ticker(required,str): The company's ticker symbol.
Flow: Instructs the model to retrieve the company's quarterly financial statements, extract Net Income and Operating Cash Flow (OCF) for the last 4 available quarters, calculate the TTM totals and the TTM Quality of Earnings Ratio (
TTM OCF / TTM Net Income), and analyze working capital drivers/non-cash items causing gaps.
π Client Integration
1. Claude Desktop
Add the following configuration to your %APPDATA%\Claude\claude_desktop_config.json (Windows) or ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"sec-edgar": {
"command": "/path/to/your/project/.venv/bin/python",
"args": [
"/path/to/your/project/server.py"
],
"env": {
"SEC_EDGAR_USER_AGENT": "YourName (your.email@example.com)"
}
}
}
}(On Windows, use backslashes for paths and point to Scripts\python.exe instead of bin/python)
2. Cursor
To configure the server in Cursor Settings:
Go to Settings -> Features -> MCP.
Click + Add New MCP Server.
Fill in the details:
Name:
sec-edgarType:
commandCommand:
/path/to/your/project/.venv/bin/python /path/to/your/project/server.py(or local Windows equivalent path)
Click Save.
3. Codex
Add the following configuration to your global Codex configuration file (located at %USERPROFILE%\.codex\config.toml on Windows) or to the local project-specific .codex/config.toml file:
[mcp_servers.sec-edgar]
command = "/path/to/your/project/.venv/bin/python"
args = ["/path/to/your/project/server.py"]
env = { SEC_EDGAR_USER_AGENT = "YourName (your.email@example.com)" }Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/MakAcp/sec-insight-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server