Server data from the Official MCP Registry
SEC insider trading alerts, Form 4 signals, 8-K events, and company research via EDGAR Alert API.
SEC insider trading alerts, Form 4 signals, 8-K events, and company research via EDGAR Alert API.
Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.
12 files analyzed · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: EDGARALERT_API_KEY
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-ikop32-code-edgaralert": {
"env": {
"EDGARALERT_API_KEY": "your-edgaralert-api-key-here"
},
"args": [
"-y",
"@edgaralert/mcp-server"
],
"command": "npx"
}
}
}From the project's GitHub README.
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:
cd mcp-server
npm install
npm run 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.
cd mcp-server
npm install
EDGARALERT_API_KEY=EA_your_key_here npm run dev
This runs the server on stdio using tsx, without a build step. Useful
when iterating on tool definitions.
{
"mcpServers": {
"edgaralert": {
"command": "node",
"args": ["/absolute/path/to/mcp-server/dist/index.js"],
"env": {
"EDGARALERT_API_KEY": "EA_your_key_here"
}
}
}
}
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.npm run typecheck # type-check without emitting
npm run build # compile to dist/
npm run dev # run with tsx, no build step
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.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.