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-tools

v0.1.1

Published

MCP Server for Confluence and JIRA (Bearer Token)

Downloads

41

Readme

mcp-atlassian-tools

Node.js MCP server for Confluence (Data Center/Server) using Bearer token authentication and JIRA.

Optional JIRA tools are enabled when JIRA_URL and JIRA_BEARER_TOKEN are set.

Features

  • list_confluence_spaces
  • get_confluence_space
  • search_confluence_pages
  • get_confluence_page
  • get_confluence_page_by_title
  • list_confluence_page_children
  • list_confluence_page_attachments
  • list_confluence_page_labels
  • get_confluence_current_user

Optional Jira tools:

  • get_jira_current_user
  • list_jira_projects
  • search_jira_issues
  • get_jira_issue
  • list_jira_issue_comments
  • list_jira_issue_transitions

Usage with npm

The server uses stdio transport and can be wired e.g. into VS Code MCP config.

Define the MCP tool in your client, e.g. like this:

"mcp-atlassian-tools": {
    "command": "npx",
    "args": ["-y", "mcp-atlassian-tools"],
    "env": {
        "CONFLUENCE_BASE_URL": "",
        "CONFLUENCE_BEARER_TOKEN": "",
        "CONFLUENCE_SPACES_FILTER": "",
        "JIRA_URL": "",
        "JIRA_BEARER_TOKEN": ""
    }
}

Make sure to enable the tools, if needed.

Local Usage

Configuration

Create a .env file in this project root:

CONFLUENCE_BASE_URL=your_confluence_url_here
CONFLUENCE_BEARER_TOKEN=your_pat_here
CONFLUENCE_SSL_VERIFY=true
# optional
# CONFLUENCE_SPACES_FILTER=SPACE,TEAM

# optional JIRA
# JIRA_URL=your_jira_url_here
# JIRA_BEARER_TOKEN=your_jira_pat_here
# JIRA_SSL_VERIFY=true
# JIRA_PROJECTS_FILTER=PROJ,TEAM

Run

npm install
npm run build
npm start