Server data from the Official MCP Registry
Check options trades for hidden catalysts (earnings, FDA, legal, SEC) before you sell premium.
Check options trades for hidden catalysts (earnings, FDA, legal, SEC) before you sell premium.
A well-structured MCP server for options trading risk analysis with proper authentication, secure credential handling via environment variables, and appropriate API-based permissions. Minor code quality issues around broad exception handling and input validation do not materially impact security. Permissions align well with the server's stated purpose of querying TickerRisk's financial data APIs. Supply chain analysis found 5 known vulnerabilities in dependencies (0 critical, 5 high severity). Package verification found 1 issue.
5 files analyzed · 9 issues 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: TICKERRISK_TOKEN
Environment variable: TICKERRISK_BASE_URL
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-pasiutusvovere-tickerrisk-mcp": {
"env": {
"TICKERRISK_TOKEN": "your-tickerrisk-token-here",
"TICKERRISK_BASE_URL": "your-tickerrisk-base-url-here"
},
"args": [
"tickerrisk-mcp"
],
"command": "uvx"
}
}
}From the project's GitHub README.
Check an options trade for hidden catalysts before you sell premium — from inside Claude, ChatGPT, or Cursor.
An MCP server that lets an AI assistant answer questions like "is it safe to sell a 30-day put on HPE?" with real event data instead of a guess.
The problem it solves: a fat option premium is usually the market pricing in a known upcoming event — an earnings report, an FDA decision, a court date — not free money. Some screeners flag earnings; few check the wider event calendar. This one scores every candidate across earnings, FDA, legal, SEC and clinical events landing inside the expiry window, and filters out the traps.
You: Is it safe to sell a 4-week put on INTC?
Claude: [calls scan_ticker]
INTC scores 100/100 (HIGH) over a 4-week window. Earnings land in 4 days,
inside your expiry. The premium is pricing that gap — 279% annualized on
the $88 put is compensation for event risk, not an edge.
Risk is horizon-dependent, and that is the whole point. The same stock:
| Ticker | 1-week window | 4-week window | Why it changes |
|---|---|---|---|
| AAPL | 51 (MEDIUM) | 97 (HIGH) | Earnings sit in week 3 |
| KO | 22 (LOW) | 62 (MEDIUM) | Earnings enter the window |
Sell a weekly and you are fine. Sell a monthly on the same ticker and you have sold straight through an earnings report. A screener that shows one number cannot tell you that.
Add to your claude_desktop_config.json:
macOS/Linux — ~/Library/Application Support/Claude/claude_desktop_config.json
Windows — %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"tickerrisk": {
"command": "uvx",
"args": ["tickerrisk-mcp"]
}
}
}
Restart Claude Desktop. You should see the TickerRisk tools in the tool menu.
claude mcp add tickerrisk -- uvx tickerrisk-mcp
In ~/.cursor/mcp.json:
{
"mcpServers": {
"tickerrisk": { "command": "uvx", "args": ["tickerrisk-mcp"] }
}
}
git clone https://github.com/Tickerrisk/tickerrisk-mcp
cd tickerrisk-mcp
pip install -e .
tickerrisk-mcp
| Tool | What it answers |
|---|---|
scan_ticker | "How risky is selling an option on X over the next N weeks?" |
find_wheel_candidates | "What cash-secured puts can I sell this week without an earnings trap?" |
find_covered_calls | "What calls can I sell against shares I already own?" |
compare_tickers | "Which of these stocks is safest to sell premium on right now?" |
scan_ticker(ticker, expiry_weeks=4)Returns a 0–100 catalyst-risk score (higher = riskier) with the events driving it: earnings date and whether it falls in the window, FDA/clinical milestones, legal filings, SEC events, implied volatility, IV Rank, and the expected move.
Bands: ≥70 HIGH · 45–69 MEDIUM · <45 LOW
find_wheel_candidates(week, risk, max_risk, min_put_oi, sector, limit)Scans the S&P 500 for cash-secured puts and returns only names whose catalyst score over
the option's own expiry window is under max_risk. Flags any candidate whose earnings land
before expiry.
find_covered_calls(week, risk, max_risk, min_call_oi, sector, limit)Same gating for the call side. Income is computed from time value only, so in-the-money strikes do not show inflated yields.
compare_tickers(tickers, expiry_weeks=4)Side-by-side catalyst risk for up to 25 symbols on one horizon.
No signup needed to start. Access follows tickerrisk.com's normal model:
find_wheel_candidates, find_covered_calls, compare_tickers)
read cached data and stay availableTo authenticate an existing account, set a token:
{
"mcpServers": {
"tickerrisk": {
"command": "uvx",
"args": ["tickerrisk-mcp"],
"env": { "TICKERRISK_TOKEN": "your-jwt-here" }
}
}
}
| Variable | Default | Purpose |
|---|---|---|
TICKERRISK_TOKEN | (none) | JWT for an existing account |
TICKERRISK_BASE_URL | https://tickerrisk.com | Override the API host |
TICKERRISK_TIMEOUT | 45 | Request timeout in seconds |
Being straight about what this is and is not:
Not financial advice. For research only.
Being accurate about this, because the differentiator is narrower than most tools claim:
Earnings-date checking is not unique. Barchart's options screener has a "Flag Earnings" option that marks contracts whose next earnings date falls on or before expiration. Market Chameleon tracks biotech catalysts and links them to option chains. If earnings alone is what you need, those are mature tools with real-time data and far more filters — use them.
What this tool does differently is combine five event types — earnings, FDA decisions, legal filings, SEC events and clinical milestones — into a single 0–100 score tied to your expiry window, and filter on it by default rather than showing an optional flag column. Court records as an options-risk input in particular is something we have not found elsewhere.
So: if you want the deepest screener, use Barchart or Option Samurai. If you want one number that answers "is there anything scheduled inside this expiry", that is what this is.
MIT
mcp-name: io.github.PasiutusVovere/tickerrisk-mcp
Be the first to review this server!
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.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.