Skip to content
VS Code

Baserow Schema MCP for VS Code

io.github.aficiomaquinas/mcp-baserow-schema

Generic Baserow API client MCP server with automatic 2FA (TOTP) auth and OpenAPI validation.

client:VS Code transport:stdio runtime:npm

Install Baserow Schema MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "baserow-api-url",
      "description": "BASEROW_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "baserow-username",
      "description": "BASEROW_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "baserow-password",
      "description": "BASEROW_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "baserow-totp-secret",
      "description": "BASEROW_TOTP_SECRET",
      "password": true
    }
  ],
  "servers": {
    "mcp-baserow-schema": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-baserow-schema"
      ],
      "env": {
        "BASEROW_API_URL": "${input:baserow-api-url}",
        "BASEROW_USERNAME": "${input:baserow-username}",
        "BASEROW_PASSWORD": "${input:baserow-password}",
        "BASEROW_TOTP_SECRET": "${input:baserow-totp-secret}"
      }
    }
  }
}

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

Baserow Schema MCP in other clients