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

@colinnian/mcp-server-atlassian-confluence

v1.0.0

Published

MCP server for Atlassian Confluence Server (self-hosted). Supports read and write operations: list/get/search/create/update pages. Designed for confluence.shopee.io but adaptable to other Confluence Server instances.

Downloads

24

Readme

@colinnian/mcp-server-atlassian-confluence

MCP (Model Context Protocol) server for Confluence Server (self-hosted). Enables AI assistants (Claude, Cursor AI, etc.) to read and write Confluence pages.

Based on @shopee/mcp-server-atlassian-confluence, with added write support (create_page, update_page) and adapted for self-hosted Confluence Server (e.g., confluence.shopee.io).

Features

| Tool | Description | Type | |------|-------------|------| | list_pages | List/filter pages by space, status, query | Read | | get_page | Get full page content and metadata | Read | | search | Search using CQL (Confluence Query Language) | Read | | create_page | Create a new page in a space | Write | | update_page | Update an existing page (auto version increment) | Write |

Quick Start

1. Get Your API Token

Go to your Confluence instance and generate a Personal Access Token (PAT), or use your existing Bearer token.

2. Configure in Cursor / Claude Desktop

Add to your MCP config (e.g., ~/.cursor/mcp.json):

{
  "mcpServers": {
    "confluence": {
      "command": "npx",
      "args": ["-y", "@colinnian/mcp-server-atlassian-confluence"],
      "env": {
        "API_TOKEN": "your_api_token_here"
      }
    }
  }
}

Or install globally:

npm install -g @colinnian/mcp-server-atlassian-confluence

Then configure:

{
  "mcpServers": {
    "confluence": {
      "command": "mcp-atlassian-confluence",
      "env": {
        "API_TOKEN": "your_api_token_here"
      }
    }
  }
}

3. Restart your AI assistant

After configuration, restart Cursor or Claude Desktop. The confluence tools will be available.

Tool Usage Examples

create_page

{
  "spaceKey": "DEV",
  "title": "My New Page",
  "body": "<p>Hello World</p>",
  "parentId": "123456"
}
  • spaceKey (required): The space key (e.g., "DEV", "TEAM")
  • title (required): Page title
  • body (required): Content in Confluence storage format (XHTML)
  • parentId (optional): Parent page ID for creating child pages

update_page

{
  "pageId": "789012",
  "title": "Updated Title",
  "body": "<h1>New Content</h1><p>Updated via MCP</p>"
}
  • pageId (required): The page ID to update
  • title (required): New page title
  • body (required): New content in storage format
  • version (optional): Version number (auto-incremented if omitted)

search

{
  "cql": "text ~ 'API documentation' AND space = DEV",
  "limit": 10
}

Adapting to Other Confluence Instances

This package is pre-configured for confluence.shopee.io. To use with a different Confluence Server instance, edit dist/utils/transport.util.js and change the baseUrl:

const baseUrl = `https://your-confluence.example.com`;

License

ISC