Skip to content
VS Code

Atlassian Attachments for VS Code

io.github.alyiox/mcp-atlassian-attachments

MCP server for downloading, uploading, and deleting Jira Cloud attachments by ID.

client:VS Code transport:stdio runtime:pypi

Install Atlassian Attachments in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "atlassian-site-url",
      "description": "ATLASSIAN_SITE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "atlassian-email",
      "description": "ATLASSIAN_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "atlassian-api-token",
      "description": "ATLASSIAN_API_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "mcp-atlassian-attachments": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-atlassian-attachments"
      ],
      "env": {
        "ATLASSIAN_SITE_URL": "${input:atlassian-site-url}",
        "ATLASSIAN_EMAIL": "${input:atlassian-email}",
        "ATLASSIAN_API_TOKEN": "${input:atlassian-api-token}"
      }
    }
  }
}

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

Atlassian Attachments in other clients