Skip to content
VS Code

simulatte for VS Code

io.github.iqbalahmed7/simulatte

Run synthetic research studies from any MCP client. 25+ SKUs + cross-study insights.

client:VS Code transport:stdio runtime:npm

Install simulatte in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "simulatte-api-key",
      "description": "SIMULATTE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "simulatte-api-url",
      "description": "SIMULATTE_API_URL",
      "password": true
    }
  ],
  "servers": {
    "simulatte": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@simulatte-io/mcp-server"
      ],
      "env": {
        "SIMULATTE_API_KEY": "${input:simulatte-api-key}",
        "SIMULATTE_API_URL": "${input:simulatte-api-url}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

simulatte in other clients