timps swarm for VS Code
io.github.sandeeprdy1729/timps-swarm
161 AI agents for code gen, health, AI/ML, infra, India-stack. One command.
client:VS Code
transport:stdio
runtime:npm
Install timps swarm in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "gemini-api-key",
"description": "GEMINI_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "anthropic-api-key",
"description": "ANTHROPIC_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "openai-api-key",
"description": "OPENAI_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "groq-api-key",
"description": "GROQ_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "ollama-host",
"description": "OLLAMA_HOST",
"password": true
},
{
"type": "promptString",
"id": "timps-model-path",
"description": "TIMPS_MODEL_PATH",
"password": true
},
{
"type": "promptString",
"id": "timps-max-agent-workers",
"description": "TIMPS_MAX_AGENT_WORKERS",
"password": true
},
{
"type": "promptString",
"id": "redis-url",
"description": "REDIS_URL",
"password": true
},
{
"type": "promptString",
"id": "timps-auth",
"description": "TIMPS_AUTH",
"password": true
},
{
"type": "promptString",
"id": "log-level",
"description": "LOG_LEVEL",
"password": true
}
],
"servers": {
"timps-swarm": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"timps-swarm"
],
"env": {
"GEMINI_API_KEY": "${input:gemini-api-key}",
"ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
"OPENAI_API_KEY": "${input:openai-api-key}",
"GROQ_API_KEY": "${input:groq-api-key}",
"OLLAMA_HOST": "${input:ollama-host}",
"TIMPS_MODEL_PATH": "${input:timps-model-path}",
"TIMPS_MAX_AGENT_WORKERS": "${input:timps-max-agent-workers}",
"REDIS_URL": "${input:redis-url}",
"TIMPS_AUTH": "${input:timps-auth}",
"LOG_LEVEL": "${input:log-level}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs