Skip to content
VS Code

Runrun.it MCP Server for VS Code

io.github.znetinho/runrunit-n1

MCP server for Runrun.it: Tasks, Comments, Projects

client:VS Code transport:stdio runtime:npm

Install Runrun.it MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "runrunit-app-key",
      "description": "RUNRUNIT_APP_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "runrunit-user-token",
      "description": "RUNRUNIT_USER_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "runrunit-n1": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-runrunit"
      ],
      "env": {
        "RUNRUNIT_APP_KEY": "${input:runrunit-app-key}",
        "RUNRUNIT_USER_TOKEN": "${input:runrunit-user-token}"
      }
    }
  }
}

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

Runrun.it MCP Server in other clients