QuantGist for VS Code
io.github.quantgist-technologies/quantgist-mcp
Macro events, earnings & market data from QuantGist for Claude and other AI agents.
client:VS Code
transport:stdio
runtime:pypi
Install QuantGist in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "quantgist-api-key",
"description": "QUANTGIST_API_KEY",
"password": true
}
],
"servers": {
"quantgist-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"quantgist-mcp"
],
"env": {
"QUANTGIST_API_KEY": "${input:quantgist-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs