Skip to content
VS Code

seatable for VS Code

io.github.seatable/seatable

MCP server for SeaTable — read, write, search, link, and query data in your bases

client:VS Code transport:stdio runtime:npm

Install seatable in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "seatable-server-url",
      "description": "SEATABLE_SERVER_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "seatable-api-token",
      "description": "SEATABLE_API_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "seatable": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@seatable/mcp-seatable"
      ],
      "env": {
        "SEATABLE_SERVER_URL": "${input:seatable-server-url}",
        "SEATABLE_API_TOKEN": "${input:seatable-api-token}"
      }
    }
  }
}

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

seatable in other clients