insightsentry mcp for VS Code
io.github.rezmeplxrf/insightsentry_mcp
MCP server for InsightSentry financial data API - market data, options, screeners, and more
client:VS Code
transport:stdio
runtime:npm
Install insightsentry mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "insightsentry-api-key",
"description": "INSIGHTSENTRY_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "insightsentry-config-dir",
"description": "INSIGHTSENTRY_CONFIG_DIR",
"password": true
}
],
"servers": {
"insightsentry_mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@insightsentry/mcp"
],
"env": {
"INSIGHTSENTRY_API_KEY": "${input:insightsentry-api-key}",
"INSIGHTSENTRY_CONFIG_DIR": "${input:insightsentry-config-dir}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs