SEC insider trading alerts, Form 4 signals, 8-K events, and company research via EDGAR Alert API.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Connect Claude Desktop (or any MCP-compatible client) directly to your EDGAR Alert account. Ask live questions about SEC insider trading signals, Form 4 activity, 8-K officer/director changes, and company research context β without leaving your conversation.
Works on any paid EDGAR Alert plan. Most tools (latest alerts, search, company profiles, fundamentals, price windows) work on STARTER and PRO. One tool β
edgaralert_get_company_agent_context, the bundled AI research-context payload β requires Enterprise; on a lower plan it returns a clear upgrade message instead of failing silently. See Tools below for the full breakdown, and edgaralert.com/pricing to upgrade.
https://api.edgaralert.com/api/v1 REST API. Every tool maps to exactly
one v1 endpoint.api.edgaralert.com as the X-API-Key header, and this server never
writes it to disk or logs it..mcpb (recommended for most users)edgaralert-mcp.mcpb from the
latest release.claude_desktop_config.jsonClone or download this folder (mcp-server/) somewhere on your machine.
Install dependencies and build:
Open your Claude Desktop config file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAdd an entry under mcpServers (see example below).
Restart Claude Desktop.
This runs the server on stdio using tsx, without a build step. Useful
when iterating on tool definitions.
Replace /absolute/path/to/mcp-server/dist/index.js with the real path on
your machine, and EA_your_key_here with your actual EDGAR Alert API key.
Never commit this file with a real key in it.
| Variable | Required | Default | Description |
|---|---|---|---|
EDGARALERT_API_KEY | Yes | β | Your EDGAR Alert v1 API key. Sent as X-API-Key on every request. |
EDGARALERT_BASE_URL | No | https://api.edgaralert.com/api/v1 | Override for staging/local development. Most users should not set this. |
All tools are read-only. See docs/tools.md for full
input schemas, endpoint mappings, and error behavior.
| Tool | Endpoint | Min. plan |
|---|---|---|
edgaralert_get_latest_alerts | GET /alerts/latest | STARTER |
edgaralert_search_alerts | GET /alerts | PRO |
edgaralert_get_alert_price_window | GET /alerts/{id}/price-window | PRO |
edgaralert_search_companies | GET /companies/search | PRO |
edgaralert_get_company_profile | GET /companies/{tickerOrCik}/profile | All paid |
edgaralert_get_company_fundamentals | GET /companies/{tickerOrCik}/fundamentals | PRO |
edgaralert_get_company_agent_context | GET /companies/{tickerOrCik}/agent-context | ENTERPRISE |
edgaralert_get_weekly_insights | GET /insights/weekly (public) | None |
"Min. plan" reflects what the underlying API enforces today β STARTER
and PRO keys can use 7 of 8 tools. Only edgaralert_get_company_agent_context
requires Enterprise; on a lower-tier key it returns a clean 403 with an
upgrade message (see below) rather than failing silently or crashing.
EDGARALERT_API_KEY
is set and correct.edgaralert_get_company_agent_context for STARTER/PRO keys; every
other tool should work normally on those plans. If you see this on a
different tool, double check your plan tier in the EDGAR Alert
dashboard.node -e "fetch('https://api.edgaralert.com/api/v1/alerts/latest').then(r=>r.text()).then(console.log)"
β you should see a JSON error like {"message":"Missing X-API-Key header."} (that's expected and means the API is reachable). If you get
a DNS error (ENOTFOUND/ENODATA) or no response, the problem is
local network/DNS, not this server or your account.EDGARALERT_BASE_URL is ever pointed at edgaralert.com or
www.edgaralert.com instead of api.edgaralert.com β the bare and
www hosts serve the marketing website (an Azure Static Web App), not
the API. The default in this package is already set to
api.edgaralert.com; if you see this error, check whether
EDGARALERT_BASE_URL has been overridden somewhere in your config.EDGARALERT_BASE_URL (defaults to
api.edgaralert.com) β no other outbound calls are made.To add a new tool: copy the pattern in src/tools/getWeeklyInsights.ts (for
a no-input tool) or src/tools/searchAlerts.ts (for a filtered tool),
register it in src/tools/index.ts, and only ever call api/v1/* or other
already-public endpoints. Do not add database clients, Stripe/order
clients, or any write-capable tool to this package.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/edgaralert)<a href="https://allmcps.com/mcp/edgaralert"><img src="https://allmcps.com/api/badge/edgaralert?style=directory" alt="Edgaralert on AllMCPs" /></a>