axionquant for VS Code
io.github.axionquant/axionquant
MCP server for AxionQuant financial data, including market, economic, SEC filing, and company data.
client:VS Code
transport:stdio
runtime:npm
Install axionquant in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "your-api-key",
"description": "YOUR_API_KEY",
"password": true
}
],
"servers": {
"axionquant": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@axionquant/mcp"
],
"env": {
"YOUR_API_KEY": "${input:your-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