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

@teolin/mcp-jira

v3.3.6

Published

Model Context Protocol server for Doctari Jira integration

Downloads

61

Readme

Jira MCP Server

Features

Model Context Protocol server for integrating with Jira instances.

  • Dual Authentication: OAuth (acli) and Basic Auth (API token) with automatic fallback
  • Ticket Details: Get comprehensive information about specific Jira tickets
  • JQL Search: Search tickets using Jira Query Language
  • Board Integration: Access sprint boards and team bug boards
  • Team Filtering: Filter bugs by team
  • Team Management: Validate and list available team names

Prerequisites

  • Node.js >=18.0.0
  • Jira instance URL and API credentials
  • Atlassian CLI (acli) for OAuth or API token for Basic Auth
# Setup environment
cp .env.example .env
# Add:
#   JIRA_BASE_URL=https://your-domain.atlassian.net
#   JIRA_AUTH_STRATEGY=auto  # auto, oauth, or basic

# Choose one authentication method:
# OAuth (recommended):
#   JIRA_SITE=your-domain.atlassian.net
#   acli jira auth login --site your-domain.atlassian.net
# OR Basic Auth:
#   [email protected]
#   JIRA_API_TOKEN=your-api-token

# Optional board IDs:
#   JIRA_TEAM_BOARD_ID=114
#   JIRA_BUGS_BOARD_ID=155

Setup

| Method | Pros | Cons | When | | -------------- | ----------------------------- | -------------------------------- | -------------- | | npx | No install, latest version | Slower, needs internet | Quick demos | | Global npm | Instant, offline | Takes disk space, manual updates | Default choice | | Local npm | Version controlled, team sync | Extra disk per project | Shared teams |

# Option 1: npx (fastest)
claude mcp add jira --scope user -- npx --yes @teolin/mcp-jira
gemini mcp add jira npx --yes @teolin/mcp-jira

# Option 2: Global install (recommended)
npm install --global @teolin/mcp-jira
claude mcp add jira --scope user -- jira-mcp
gemini mcp add jira jira-mcp

# Option 3: Local project
npm install @teolin/mcp-jira
claude mcp add jira --scope project -- node ./node_modules/@teolin/mcp-jira/src/index.js

# Verify
claude mcp list
gemini mcp list

# Remove
claude mcp remove jira --scope user
gemini mcp remove jira

Available Tools

1. get_ticket_details

Get detailed info about a specific ticket (e.g., PAB-1234).

2. search_tickets_jql

Search tickets using JQL queries.

3. get_board_issues

Get issues from sprint boards.

4. get_ptls_board_bugs

Get PTLS bugs, optionally filtered by team.

5. get_absences_bugs

Shortcut for Absences team bugs.

6. get_team_names

List available team names.

Usage Examples

Example 1: Get ticket details

// In Claude Code:
"Get me details for ticket PAB-1234"
// Retrieves full ticket information

Example 2: Search with JQL

// In Claude Code:
"Show me all bugs assigned to the Absences team"
// Uses: search_tickets_jql with custom filter

Example 3: Get board issues

// In Claude Code:
"What tickets are in the current sprint for board 114?"
// Retrieves sprint issues

Example 4: List teams

// In Claude Code:
"List all available team names"
// Returns team names for filtering