Kronos for VS Code
io.github.hangeaiagent/kronos-mcp
Stock price forecasting for China A-shares — Kronos K-line time-series model
client:VS Code
transport:stdio
runtime:pypi
Install Kronos in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "kronos-api-key",
"description": "KRONOS_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "kronos-url",
"description": "KRONOS_URL",
"password": true
},
{
"type": "promptString",
"id": "kronos-timeout",
"description": "KRONOS_TIMEOUT",
"password": true
}
],
"servers": {
"kronos-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"kronos-mcp"
],
"env": {
"KRONOS_API_KEY": "${input:kronos-api-key}",
"KRONOS_URL": "${input:kronos-url}",
"KRONOS_TIMEOUT": "${input:kronos-timeout}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs