Skip to content
VS Code

mcp jira scoped for VS Code

io.github.deepwired/mcp-jira-scoped

Jira MCP server with scoped API tokens via api.atlassian.com gateway

client:VS Code transport:stdio runtime:npm

Install mcp jira scoped in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "jira-instance",
      "description": "JIRA_INSTANCE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "jira-user-email",
      "description": "JIRA_USER_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "jira-api-token",
      "description": "JIRA_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "jira-scopes",
      "description": "JIRA_SCOPES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "jira-cloud-id",
      "description": "JIRA_CLOUD_ID",
      "password": true
    }
  ],
  "servers": {
    "mcp-jira-scoped": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-jira-scoped"
      ],
      "env": {
        "JIRA_INSTANCE": "${input:jira-instance}",
        "JIRA_USER_EMAIL": "${input:jira-user-email}",
        "JIRA_API_TOKEN": "${input:jira-api-token}",
        "JIRA_SCOPES": "${input:jira-scopes}",
        "JIRA_CLOUD_ID": "${input:jira-cloud-id}"
      }
    }
  }
}

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

mcp jira scoped in other clients