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_URLAtlassian Cloud site URL, for example https://yourorg.atlassian.net. Must be HTTPS. Can also be set in ~/.config/mcp-atlassian-attachments/config.json.
ATLASSIAN_EMAILEmail address used for Atlassian Cloud Basic auth. Can also be set in ~/.config/mcp-atlassian-attachments/config.json.
ATLASSIAN_API_TOKENsecretAtlassian 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-attachmentsRelated MCP servers
Microsoft SQL Server
Active
Read-only MCP for Microsoft SQL Server: metadata discovery, parameterized SELECT, plans.
6
View repository →C#
MIT
ClickHouse
Active
Read-only MCP server for ClickHouse metadata, parameterized queries, and plan analysis.
0
View repository →Python
MIT