Stockbit MCP for VS Code
io.github.ino-xious/stockbit-mcp
Indonesian exchange (IDX) via your own Stockbit account: quotes, bandarmology, charts. Unofficial.
client:VS Code
transport:stdio
runtime:npm
Install Stockbit MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "stockbit-tools",
"description": "STOCKBIT_TOOLS",
"password": true
},
{
"type": "promptString",
"id": "stockbit-trading",
"description": "STOCKBIT_TRADING",
"password": true
},
{
"type": "promptString",
"id": "stockbit-no-browser",
"description": "STOCKBIT_NO_BROWSER",
"password": true
},
{
"type": "promptString",
"id": "stockbit-store-dir",
"description": "STOCKBIT_STORE_DIR",
"password": true
}
],
"servers": {
"stockbit-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"stockbit-mcp"
],
"env": {
"STOCKBIT_TOOLS": "${input:stockbit-tools}",
"STOCKBIT_TRADING": "${input:stockbit-trading}",
"STOCKBIT_NO_BROWSER": "${input:stockbit-no-browser}",
"STOCKBIT_STORE_DIR": "${input:stockbit-store-dir}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs