Skip to content
VS Code

Project Context for VS Code

io.github.sandovalrr/project-context

Safely manage repository-scoped issues across Linear, GitHub Issues, and Jira Cloud.

client:VS Code transport:stdio runtime:npm

Install Project Context in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "project-context-config-dir",
      "description": "PROJECT_CONTEXT_CONFIG_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "project-context-state-dir",
      "description": "PROJECT_CONTEXT_STATE_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "project-context-cwd",
      "description": "PROJECT_CONTEXT_CWD",
      "password": true
    }
  ],
  "servers": {
    "project-context": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@sandovalrr/project-context-mcp"
      ],
      "env": {
        "PROJECT_CONTEXT_CONFIG_DIR": "${input:project-context-config-dir}",
        "PROJECT_CONTEXT_STATE_DIR": "${input:project-context-state-dir}",
        "PROJECT_CONTEXT_CWD": "${input:project-context-cwd}"
      }
    }
  }
}

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

Project Context in other clients