Skip to content
VS Code

deepmiro for VS Code

io.github.kakarot-dev/deepmiro

Simulate hundreds of AI agents to predict how communities react to events and policies

client:VS Code transport:stdio runtime:npm

Install deepmiro in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "deepmiro-api-key",
      "description": "DEEPMIRO_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mirofish-url",
      "description": "MIROFISH_URL",
      "password": true
    }
  ],
  "servers": {
    "deepmiro": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "deepmiro-mcp"
      ],
      "env": {
        "DEEPMIRO_API_KEY": "${input:deepmiro-api-key}",
        "MIROFISH_URL": "${input:mirofish-url}"
      }
    }
  }
}

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

deepmiro in other clients