PluginBench
MCP Server

io.github.stefanoamorelli/sec-edgar-mcp MCP Server

io.github.stefanoamorelli/sec-edgar-mcp

What is the io.github.stefanoamorelli/sec-edgar-mcp MCP server?

SEC EDGAR MCP server that provides access to the US public filings through the US SEC EDGAR API

How to install io.github.stefanoamorelli/sec-edgar-mcp

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • SEC_EDGAR_USER_AGENT
    required

    The user agent to access the SEC EDGAR API

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "sec-edgar-mcp": {
      "command": "uvx",
      "args": [
        "sec-edgar-mcp"
      ],
      "env": {
        "SEC_EDGAR_USER_AGENT": "<YOUR_SEC_EDGAR_USER_AGENT>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "sec-edgar-mcp": {
      "command": "uvx",
      "args": [
        "sec-edgar-mcp"
      ],
      "env": {
        "SEC_EDGAR_USER_AGENT": "<YOUR_SEC_EDGAR_USER_AGENT>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "sec-edgar-mcp": {
      "command": "uvx",
      "args": [
        "sec-edgar-mcp"
      ],
      "env": {
        "SEC_EDGAR_USER_AGENT": "<YOUR_SEC_EDGAR_USER_AGENT>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "sec-edgar-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "sec-edgar-mcp"
      ],
      "env": {
        "SEC_EDGAR_USER_AGENT": "<YOUR_SEC_EDGAR_USER_AGENT>"
      }
    }
  }
}
Claude Code
claude mcp add sec-edgar-mcp --env SEC_EDGAR_USER_AGENT=<YOUR_SEC_EDGAR_USER_AGENT> -- uvx sec-edgar-mcp

Related MCP servers

Federal Reserve Economic Data (FRED) MCP Server - Access all 800,000+ economic time series

View repository →