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

@zaimokuza/atlassian-server-mcp

v1.0.1

Published

Unified stdio MCP server for Jira, Confluence, and Bitbucket Data Center

Downloads

173

Readme

Atlassian Server MCP

English README(英文版为准)

一个 TypeScript MCP 2.x stdio server,统一对接 Jira、Confluence、Bitbucket Data Center。客户端看到的是一小组面向常见工作流的 typed 工具,加上通用的 discover/describe/execute 工具;策略管控的 REST operation 注册表通过通用工具 按需发现、执行。

特性

  • 三产品一个 server——Jira DC 平台 API 与 Jira Software Agile API (board、sprint、backlog、epic)、Confluence、Bitbucket PR 工作流。
  • 分层暴露——每个操作有固有 read / safe / risky / max 层级;agent 只能看到配置层级与 FORCE glob 允许的范围。这是 agent 暴露边界,不是授权边界。
  • 默认安全——默认只读启动、TLS 校验开启、PAT 认证优先、凭证在 所有错误与日志中脱敏。
  • 策略由官方 spec 生成——暴露策略从锁定的 Atlassian OpenAPI 快照 构建;atlassian_discover_operations 报告运行中 server 实际暴露的 内容。
  • 严格起飞前 doctor——接入 client 前校验配置、凭证、可达性、 TLS 与 file root 可写性。

快速开始(5 分钟)

  1. 安装并构建(需要 Node.js 22 或更新):

    pnpm install
    pnpm build
  2. 配置至少一个产品。产品 URL 存在即启用;产品 PAT 非空优先,否则需要 完整的共享 Basic 凭证:

    export JIRA_URL=https://jira.example.internal
    export JIRA_TOKEN=...
    # 可选:CONFLUENCE_URL / CONFLUENCE_TOKEN、BITBUCKET_URL / BITBUCKET_TOKEN
    # Basic 兜底(共享):ATLASSIAN_USERNAME + ATLASSIAN_PASSWORD
  3. 在 MCP client 中配置:

    {
      "mcpServers": {
        "atlassian-dc": {
          "command": "node",
          "args": ["/absolute/path/to/atlassian-server-mcp/dist/cli.js"],
          "env": {
            "JIRA_URL": "https://jira.example.internal",
            "JIRA_TOKEN": "..."
          }
        }
      }
    }

    包发布后可直接 npx @zaimokuza/atlassian-server-mcp

  4. 用严格的起飞前检查验证:

    npx @zaimokuza/atlassian-server-mcp doctor

    任一 FAIL 非零退出;WARN 不阻塞。

安全警告

  • TLS 证书与主机名校验默认开启--no-tls-verify / ATLASSIAN_TLS_VERIFY=false 会关闭它,仅可用于对自签名端点的本地 测试——否则网络中间人可以冒充你的服务器。
  • 暴露层级默认 read--exposure-tier=safe|risky|max 会扩大 LLM agent 可调用的范围;它永远不替代 Atlassian PAT 权限。
  • 威胁模型见 Wiki 安全模型 页。

兼容性

生成/测试基线(不是启动白名单——其他版本可启动并收到警告,实际兼容性 由目标实例决定):

| 产品 | 基线版本 | 锁定 E2E 镜像 | | ---------- | -------------------- | -------------------------------- | | Jira | DC 10.3 / 11.3 | atlassian/jira-software:11.3.5 | | Confluence | DC 9.2 / 10.2 | atlassian/confluence:10.2.11 | | Bitbucket | DC 9.4 / 10.2 / 10.4 | atlassian/bitbucket:10.4.1 |

要求 Node.js >=22。Jira Service Management、Assets 与 Marketplace 插件 API 不在 v1 范围。

文档

用户文档在项目 Wiki(内容源在 docs/wiki/, 自动同步;中文页面带 .zh-CN 后缀):

项目/开发者文档:

所有开发者文档均有英文版(docs/en/),Wiki 页面均有对应英文页(不带后缀),以英文版为准

贡献与支持

开发环境准备与生成物纪律见 AGENTS.md 及上文开发者文档。bug 报告与功能请求请走 GitHub issues。