Skip to content
VS Code

Rebase for VS Code

io.github.rebasepro/rebase

Schema, database, document, user and dev-server tools for a Rebase backend project.

client:VS Code transport:stdio runtime:npm

Install Rebase in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "rebase-project-dir",
      "description": "REBASE_PROJECT_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rebase-base-url",
      "description": "REBASE_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rebase-api-token",
      "description": "REBASE_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rebase-mcp-allow-remote-writes",
      "description": "REBASE_MCP_ALLOW_REMOTE_WRITES",
      "password": true
    }
  ],
  "servers": {
    "rebase": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@rebasepro/mcp"
      ],
      "env": {
        "REBASE_PROJECT_DIR": "${input:rebase-project-dir}",
        "REBASE_BASE_URL": "${input:rebase-base-url}",
        "REBASE_API_TOKEN": "${input:rebase-api-token}",
        "REBASE_MCP_ALLOW_REMOTE_WRITES": "${input:rebase-mcp-allow-remote-writes}"
      }
    }
  }
}

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

Rebase in other clients