Skip to content
VS Code

taskboard mcp for VS Code

io.github.refugeswordpublishing/taskboard-mcp

Persistent task board synced across Claude Code and Claude.ai, backed by Supabase.

client:VS Code transport:stdio runtime:npm

Install taskboard mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "supabase-url",
      "description": "SUPABASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "supabase-anon-key",
      "description": "SUPABASE_ANON_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "anthropic-api-key",
      "description": "ANTHROPIC_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "taskboard-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@refugeandsword/taskboard-mcp"
      ],
      "env": {
        "SUPABASE_URL": "${input:supabase-url}",
        "SUPABASE_ANON_KEY": "${input:supabase-anon-key}",
        "ANTHROPIC_API_KEY": "${input:anthropic-api-key}"
      }
    }
  }
}

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

taskboard mcp in other clients