PluginBench
MCP Server
Active
MIT

Atlassian Attachments MCP Server

io.github.alyiox/mcp-atlassian-attachments

What is the Atlassian Attachments MCP server?

MCP server for downloading Jira and Confluence Cloud attachments by attachment ID.

How to install Atlassian Attachments

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • ATLASSIAN_SITE_URL

    Atlassian Cloud site URL, for example https://yourorg.atlassian.net. Must be HTTPS. Can also be set in ~/.config/mcp-atlassian-attachments/config.json.

  • ATLASSIAN_EMAIL

    Email address used for Atlassian Cloud Basic auth. Can also be set in ~/.config/mcp-atlassian-attachments/config.json.

  • ATLASSIAN_API_TOKEN
    secret

    Atlassian Cloud API token. Used as the password in Basic auth. Can also be set in ~/.config/mcp-atlassian-attachments/config.json.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "mcp-atlassian-attachments": {
      "command": "uvx",
      "args": [
        "mcp-atlassian-attachments"
      ],
      "env": {
        "ATLASSIAN_SITE_URL": "<YOUR_ATLASSIAN_SITE_URL>",
        "ATLASSIAN_EMAIL": "<YOUR_ATLASSIAN_EMAIL>",
        "ATLASSIAN_API_TOKEN": "<YOUR_ATLASSIAN_API_TOKEN>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "mcp-atlassian-attachments": {
      "command": "uvx",
      "args": [
        "mcp-atlassian-attachments"
      ],
      "env": {
        "ATLASSIAN_SITE_URL": "<YOUR_ATLASSIAN_SITE_URL>",
        "ATLASSIAN_EMAIL": "<YOUR_ATLASSIAN_EMAIL>",
        "ATLASSIAN_API_TOKEN": "<YOUR_ATLASSIAN_API_TOKEN>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "mcp-atlassian-attachments": {
      "command": "uvx",
      "args": [
        "mcp-atlassian-attachments"
      ],
      "env": {
        "ATLASSIAN_SITE_URL": "<YOUR_ATLASSIAN_SITE_URL>",
        "ATLASSIAN_EMAIL": "<YOUR_ATLASSIAN_EMAIL>",
        "ATLASSIAN_API_TOKEN": "<YOUR_ATLASSIAN_API_TOKEN>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "mcp-atlassian-attachments": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-atlassian-attachments"
      ],
      "env": {
        "ATLASSIAN_SITE_URL": "<YOUR_ATLASSIAN_SITE_URL>",
        "ATLASSIAN_EMAIL": "<YOUR_ATLASSIAN_EMAIL>",
        "ATLASSIAN_API_TOKEN": "<YOUR_ATLASSIAN_API_TOKEN>"
      }
    }
  }
}
Claude Code
claude mcp add mcp-atlassian-attachments --env ATLASSIAN_SITE_URL=<YOUR_ATLASSIAN_SITE_URL> --env ATLASSIAN_EMAIL=<YOUR_ATLASSIAN_EMAIL> --env ATLASSIAN_API_TOKEN=<YOUR_ATLASSIAN_API_TOKEN> -- uvx mcp-atlassian-attachments

Related MCP servers

Read-only MCP for Microsoft SQL Server: metadata discovery, parameterized SELECT, plans.

6
C#
MIT
View repository →

MCP server for Walmart Connect Ads APIs (Sponsored Search + Display)

1
Python
MIT
View repository →

Read-only MCP server for ClickHouse metadata, parameterized queries, and plan analysis.

0
Python
MIT
View repository →
Atlassian Attachments MCP Server | PluginBench