Simmer for VS Code
io.github.adlai88/simmer-mcp
Trade prediction markets with AI agents — skill discovery, autoresearch, and execution.
client:VS Code
transport:stdio
runtime:npm
Install Simmer in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "simmer-api-key",
"description": "SIMMER_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "simmer-mcp-allow-live",
"description": "SIMMER_MCP_ALLOW_LIVE",
"password": true
}
],
"servers": {
"simmer-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"simmer-mcp"
],
"env": {
"SIMMER_API_KEY": "${input:simmer-api-key}",
"SIMMER_MCP_ALLOW_LIVE": "${input:simmer-mcp-allow-live}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs