Overview
edgar-sec-mcp is an MCP (Modular Computing Platform) server designed to facilitate AI agents in accessing and interacting with EDGAR Data from the SEC. It provides tools and endpoints for retrieving and analyzing SEC filings.
To use edgar-sec-mcp, configure it with the provided settings and utilize the available tools to access specific SEC data, such as proxy statements and Form 4 filings.
- Access to SEC filings through a modular computing platform. - Tools for retrieving proxy statements and Form 4 data by ticker. - Streamlined data processing utilities for analysis.
- Analyzing executive compensation through proxy statements.
- Understanding insider trading activities via Form 4 filings.
- Facilitating AI-driven analysis of SEC data for research purposes.
Add to your AI client
Use these steps to connect edgar-sec-mcp in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"edgar-sec-mcp-flothjl": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-edgar-sec-mcp-flothjl"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"edgar-sec-mcp-flothjl": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-edgar-sec-mcp-flothjl"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"edgar-sec-mcp-flothjl": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-edgar-sec-mcp-flothjl"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"edgar-sec-mcp-flothjl": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-edgar-sec-mcp-flothjl"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"edgar-sec-mcp-flothjl": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-edgar-sec-mcp-flothjl"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"edgar-sec-mcp-flothjl": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-edgar-sec-mcp-flothjl"
]
}
}
}FAQ
What types of SEC data can I access with edgar-sec-mcp?
You can access various SEC filings, including proxy statements and Form 4 filings.
Is edgar-sec-mcp easy to set up?
Yes! The configuration is straightforward, and detailed instructions are provided in the documentation.
Can I use edgar-sec-mcp for real-time data retrieval?
Yes, it is designed to facilitate real-time access to SEC data.