TickerRisk for VS Code
io.github.pasiutusvovere/tickerrisk-mcp
Check options trades for hidden catalysts (earnings, FDA, legal, SEC) before you sell premium.
client:VS Code
transport:stdio
runtime:pypi
Install TickerRisk in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "tickerrisk-token",
"description": "TICKERRISK_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "tickerrisk-base-url",
"description": "TICKERRISK_BASE_URL",
"password": true
}
],
"servers": {
"tickerrisk-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"tickerrisk-mcp"
],
"env": {
"TICKERRISK_TOKEN": "${input:tickerrisk-token}",
"TICKERRISK_BASE_URL": "${input:tickerrisk-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs