AgentSUMO for VS Code
io.github.mw-jeong/agentsumo-mcp
MCP server for LLM-driven SUMO traffic simulation, scenario design, and result analysis.
client:VS Code
transport:stdio
runtime:pypi
Install AgentSUMO in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sumo-home",
"description": "SUMO_HOME",
"password": true
},
{
"type": "promptString",
"id": "agentsumo-mcp-output-base",
"description": "AGENTSUMO_MCP_OUTPUT_BASE",
"password": true
}
],
"servers": {
"agentsumo-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"agentsumo-mcp"
],
"env": {
"SUMO_HOME": "${input:sumo-home}",
"AGENTSUMO_MCP_OUTPUT_BASE": "${input:agentsumo-mcp-output-base}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs