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

atlassian-cli

v0.3.0

Published

CLI for Atlassian Jira and Confluence

Readme

atlassian-cli

npm version license

CLI for Atlassian Jira and Confluence. Manage issues, search with JQL/CQL, browse Confluence pages — all from the terminal.

Install

npm install -g atlassian-cli

Or run directly with npx:

npx atlassian-cli --help

Configuration

Set environment variables or use a .env file:

# Jira (Cloud)
export JIRA_URL=https://your-company.atlassian.net
export [email protected]
export JIRA_API_TOKEN=your_api_token

# Confluence (Cloud)
export CONFLUENCE_URL=https://your-company.atlassian.net/wiki
export [email protected]
export CONFLUENCE_API_TOKEN=your_api_token

For Jira/Confluence Server or Data Center, use personal access tokens instead:

export JIRA_PERSONAL_TOKEN=your_pat
export CONFLUENCE_PERSONAL_TOKEN=your_pat

Or pass a .env file with the -e flag:

atlassian-cli -e .env jira issue search --jql "project = PROJ"

Usage

atlassian-cli jira issue search --jql "project = PROJ AND status = 'In Progress'"
atlassian-cli jira issue view PROJ-123
atlassian-cli jira issue view "https://your-company.atlassian.net/browse/PROJ-123"
atlassian-cli confluence page search "onboarding docs"
atlassian-cli confluence page get --id 123456
atlassian-cli confluence page get --id "https://your-company.atlassian.net/wiki/spaces/TEAM/pages/123456/Example"

jira issue view accepts either a Jira issue key or a Jira browse URL. The CLI extracts the issue key from URLs such as https://your-company.atlassian.net/browse/PROJ-123.

confluence page get --id accepts either a numeric page ID or a Confluence page URL. The CLI extracts the page ID from URLs such as https://your-company.atlassian.net/wiki/spaces/TEAM/pages/123456/Example or https://your-company.atlassian.net/wiki/pages/viewpage.action?pageId=123456.

Use --json for raw JSON output:

atlassian-cli --json jira issue search --jql "assignee = currentUser()"

Run atlassian-cli --help for full command list.

MCP Stdio Mode

Run the CLI as an MCP server over stdio with a single top-level subcommand:

atlassian-cli mcp

Limit the exposed tools if needed:

atlassian-cli mcp --enabled-tools "jira_get_issue,jira_search,confluence_search"

You can also use environment variables:

export ENABLED_TOOLS="jira_get_issue,jira_search"
export READ_ONLY_MODE=true
atlassian-cli mcp

Development

Requires Bun.

bun install
bun run src/index.ts --help

Build for distribution:

bun run build

License

MIT