npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mcp-atlassian-docker

v1.0.0

Published

MCP server for Atlassian (Jira & Confluence) using Docker

Readme

MCP Atlassian Docker

A Model Context Protocol (MCP) server for Atlassian products (Jira & Confluence) running in Docker.

Prerequisites

  • Docker and docker-compose installed
  • Atlassian personal access tokens for Jira and Confluence

Installation

Using npx (recommended)

npx mcp-atlassian-docker

Global installation

npm install -g mcp-atlassian-docker
mcp-atlassian-docker

Configuration

For Claude Desktop or MCP Clients

Add this to your MCP configuration file (e.g., .mcp.json or Claude Desktop config):

{
  "mcpServers": {
    "mcp-atlassian": {
      "command": "npx",
      "args": ["-y", "mcp-atlassian-docker"],
      "env": {
        "CONFLUENCE_URL": "https://your-confluence.atlassian.net",
        "CONFLUENCE_PERSONAL_TOKEN": "your_confluence_token",
        "CONFLUENCE_SSL_VERIFY": "true",
        "JIRA_URL": "https://your-jira.atlassian.net",
        "JIRA_PERSONAL_TOKEN": "your_jira_token",
        "JIRA_SSL_VERIFY": "true"
      }
    }
  }
}

Environment Variables

| Variable | Description | Required | Default | |----------|-------------|----------|---------| | CONFLUENCE_URL | Your Confluence instance URL | Yes | - | | CONFLUENCE_PERSONAL_TOKEN | Confluence personal access token | Yes | - | | CONFLUENCE_SSL_VERIFY | Enable SSL verification for Confluence | No | true | | JIRA_URL | Your Jira instance URL | Yes | - | | JIRA_PERSONAL_TOKEN | Jira personal access token | Yes | - | | JIRA_SSL_VERIFY | Enable SSL verification for Jira | No | true |

Getting Personal Access Tokens

Confluence

  1. Go to your Confluence settings
  2. Navigate to Personal Access Tokens
  3. Create a new token with appropriate permissions

Jira

  1. Go to your Jira settings
  2. Navigate to Personal Access Tokens
  3. Create a new token with appropriate permissions

Usage

Once configured in your MCP client, the server will be automatically started when needed.

Manual Testing

You can test the server manually:

CONFLUENCE_URL="https://your-confluence.atlassian.net" \
CONFLUENCE_PERSONAL_TOKEN="your_token" \
JIRA_URL="https://your-jira.atlassian.net" \
JIRA_PERSONAL_TOKEN="your_token" \
npx mcp-atlassian-docker

Features

This MCP server provides access to:

  • Jira issues, projects, and workflows
  • Confluence pages and spaces
  • Search and query capabilities
  • Create, update, and delete operations

For detailed API documentation, refer to the mcp-atlassian project.

Troubleshooting

Docker not found

Ensure Docker and docker-compose are installed and in your PATH:

docker --version
docker-compose --version

Permission denied

On Linux/macOS, you may need to add your user to the docker group:

sudo usermod -aG docker $USER

SSL verification issues

If you're using self-signed certificates or encountering SSL errors, set:

CONFLUENCE_SSL_VERIFY=false
JIRA_SSL_VERIFY=false

License

MIT

Credits

This package wraps the excellent mcp-atlassian Docker image by sooperset.