Connects to the SEC's EDGAR public APIs without requiring authentication. Part of the Pipeworx gateway system that routes to 673+ data sources. You can call tools directly or use the ask_pipeworx helper to query in plain English and let the gateway pick the right endpoint. Useful when you need to pull SEC filings, company data, or regulatory documents programmatically. The specific EDGAR tools aren't documented in the source, but it's a straightforward wrapper around SEC's free public endpoints. Deploy via the standalone EDGAR gateway or connect to the full Pipeworx gateway for access to their entire catalog.
EDGAR MCP — SEC EDGAR public APIs (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 884+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"edgar": {
"url": "https://gateway.pipeworx.io/edgar/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 884+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Edgar data" })
The gateway picks the right tool and fills the arguments automatically.
MIT