Skip to content
VS Code

Juscribe for VS Code

io.github.juscribe/juscribe

Read and work your Juscribe board: tickets, subtasks, blockers, projects and iterations.

client:VS Code transport:stdio runtime:npm

Install Juscribe in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "juscribe-api-token",
      "description": "JUSCRIBE_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "juscribe-base-url",
      "description": "JUSCRIBE_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "juscribe": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@juscribe/mcp"
      ],
      "env": {
        "JUSCRIBE_API_TOKEN": "${input:juscribe-api-token}",
        "JUSCRIBE_BASE_URL": "${input:juscribe-base-url}"
      }
    }
  }
}

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

Juscribe in other clients