Skip to content
VS Code

linear bootstrap for VS Code

io.github.toolwright-adk/linear-bootstrap

Bootstrap Linear projects from natural language — milestones, epics, issues, and dependencies.

client:VS Code transport:stdio runtime:npm

Install linear bootstrap in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "linear-api-key",
      "description": "LINEAR_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "llm-api-key",
      "description": "LLM_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "llm-base-url",
      "description": "LLM_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "llm-model",
      "description": "LLM_MODEL",
      "password": true
    }
  ],
  "servers": {
    "linear-bootstrap": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@toolwright-adk/linear-bootstrap"
      ],
      "env": {
        "LINEAR_API_KEY": "${input:linear-api-key}",
        "LLM_API_KEY": "${input:llm-api-key}",
        "LLM_BASE_URL": "${input:llm-base-url}",
        "LLM_MODEL": "${input:llm-model}"
      }
    }
  }
}

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

linear bootstrap in other clients