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

@mcpio/jira

v2.6.2

Published

Model Context Protocol (MCP) server for Jira Cloud API v3 with automatic Markdown-to-ADF conversion

Readme

Jira MCP Server v2.6.2

Model Context Protocol (MCP) server for Jira API integration with automatic Markdown-to-ADF conversion.

License: MIT Node.js Version TypeScript

Features

  • 50 Jira API tools via MCP protocol
  • 33 pre-baked MCP prompts covering every tool (sprint planning, bug triage, epic health, standup, weekly reports, bulk ops, attachments, watchers, filters, reorg, etc.)
  • Automatic Markdown to ADF conversion (write Markdown, get proper Jira formatting)
  • ADF to Markdown conversion when reading issues and comments
  • Sprint and board management via Jira Agile API
  • File attachment support
  • Input validation, HTTPS enforcement, Jira error details in responses
  • TypeScript source with full type definitions
  • Zero runtime dependencies beyond MCP SDK and axios

Setup

Get your API token: https://id.atlassian.com/manage-profile/security/api-tokens

Option 1: MCP client config (recommended)

Add to your MCP client configuration (Claude Desktop, VS Code, Cursor, etc.):

{
  "mcpServers": {
    "jira": {
      "command": "npx",
      "args": ["-y", "@mcpio/jira"],
      "env": {
        "JIRA_HOST": "https://your-domain.atlassian.net",
        "JIRA_EMAIL": "[email protected]",
        "JIRA_API_TOKEN": "your-api-token",
        "JIRA_PROJECT_KEY": "YOUR-PROJECT-KEY",
        "JIRA_STORY_POINTS_FIELD": "customfield_10016"
      }
    }
  }
}

Option 2: Shell environment variables

Export variables in your shell and run directly:

export JIRA_HOST=https://your-domain.atlassian.net
export [email protected]
export JIRA_API_TOKEN=your-api-token
export JIRA_PROJECT_KEY=YOUR-PROJECT-KEY
export JIRA_STORY_POINTS_FIELD=customfield_10016
npx @mcpio/jira

If you keep credentials in a .env file, source it in your shell before running:

set -a; source .env; set +a
npx @mcpio/jira

Note (v2.4.0+): The server no longer reads .env files automatically. This reduces filesystem capability surface for supply-chain audits. Use shell export or MCP client config (Option 1) instead.

Formatting

All description and comment fields accept standard Markdown:

# Heading
**bold** *italic* ~~strike~~ `code`
[link text](https://example.com)
- bullet item
1. numbered item
> blockquote
| Header 1 | Header 2 |
|----------|----------|
| cell 1   | cell 2   |

Automatically converted to Atlassian Document Format (ADF).

MCP Prompts

Pre-baked workflows your AI agent can invoke directly (via MCP prompts/list + prompts/get). Every one of the 50 tools is referenced in at least one prompt.

Formatting & lookup

  • jira-formatting-guide - Markdown formatting rules for Jira (ADF)
  • jira-user-lookup - Resolve accountId by name/email
  • jira-changelog-audit - Audit history of an issue
  • jira-field-discovery - Find custom field IDs and enum values
  • jira-project-overview - Project snapshot for onboarding

Planning

  • jira-epic-breakdown - Split an idea into an epic + stories + subtasks
  • jira-subtask-breakdown - Break one story into implementation subtasks
  • jira-sprint-planning - Pull next sprint from backlog by priority + capacity
  • jira-version-planning - Plan contents of a fixVersion (release)
  • jira-clone-template - Clone template issue with placeholder replacement
  • jira-bulk-create - Scaffold many issues from a structured list
  • jira-epic-reorg - Move issues between epics

Triage & cleanup

  • jira-bug-triage - Triage open bugs (assign, prioritize, comment)
  • jira-backlog-grooming - Find stale/unclear/duplicate backlog items
  • jira-duplicate-detector - Find duplicates of a specific issue
  • jira-estimation-helper - Estimate story points from similar past issues
  • jira-issue-cleanup - Safely delete an issue with pre-flight audit
  • jira-comment-maintenance - Edit or remove existing comments

Status & reporting

  • jira-standup-prep - Daily standup notes (Yesterday / Today / Blockers)
  • jira-sprint-summary - Status report for active sprint
  • jira-weekly-report - Cross-project status for management
  • jira-release-notes - User-facing notes from resolved issues in a version
  • jira-epic-health - Traffic-light health per active epic

Analysis

  • jira-dependency-map - Trace blockers (direct + transitive) for an issue
  • jira-velocity-check - Team velocity over last N sprints
  • jira-workload-balance - Per-assignee workload snapshot
  • jira-retro-data - Sprint retro data (wins, misses, flow)
  • jira-worklog-summary - Time logged by user/team over a period

Operations

  • jira-bulk-transition - Mass status transition with per-issue report
  • jira-attachment-review - List, download, add attachments on an issue
  • jira-watcher-management - Manage watchers on an issue
  • jira-saved-views - Find and run a saved Jira filter
  • jira-worklog-entry - Log time for a single issue

Available Tools

Issue Management

  • jira_create_issue - Create new issue
  • jira_get_issue - Get issue details
  • jira_search_issues - Search with JQL
  • jira_update_issue - Update issue fields and status
  • jira_delete_issue - Delete issue
  • jira_clone_issue - Clone an existing issue
  • jira_create_subtask - Create subtask
  • jira_bulk_create_issues - Create multiple issues at once
  • jira_assign_issue - Assign/unassign user
  • jira_add_comment - Add comment
  • jira_update_comment - Update existing comment
  • jira_delete_comment - Delete comment
  • jira_get_comments - Get issue comments
  • jira_link_issues - Link two issues
  • jira_list_transitions - Get available status transitions
  • jira_get_changelog - Get issue change history
  • jira_add_worklog - Add time tracking entry
  • jira_get_worklogs - Get worklog entries
  • jira_get_attachments - List attachments on an issue
  • jira_add_attachment - Attach a local file to an issue

Sprint & Board Management

  • jira_list_boards - List all Scrum/Kanban boards
  • jira_list_sprints - List sprints for a board
  • jira_get_sprint - Get sprint details with all issues
  • jira_move_to_sprint - Move issues to a sprint

Epic Management

  • jira_list_epics - List all epics in a project
  • jira_get_epic - Get epic details (name, color, done status)
  • jira_get_epic_issues - Get all child issues linked to an epic with progress
  • jira_get_board_epics - List epics on a board (filterable by done status)
  • jira_add_issues_to_epic - Link one or more issues to an epic
  • jira_remove_issue_from_epic - Unlink issues from their epic
  • jira_create_epic - Create a new epic (sets issueType=Epic, handles classic Epic Name field)

Project Management

  • jira_list_projects - List all projects
  • jira_get_project_info - Get project details
  • jira_get_project_components - Get project components
  • jira_get_project_versions - Get project versions/releases

Metadata

  • jira_get_fields - Get all fields (find custom field IDs)
  • jira_get_issue_types - Get issue types for project
  • jira_get_priorities - Get available priorities
  • jira_get_link_types - Get issue link types
  • jira_search_users - Search users by name/email
  • jira_get_user_issues - Get all issues assigned to a user

Watchers & Notifications

  • jira_get_myself - Get the authenticated user (accountId, timezone, email)
  • jira_add_watcher - Subscribe a user to an issue
  • jira_remove_watcher - Unsubscribe a user from an issue
  • jira_get_watchers - List all watchers on an issue

Saved Filters

  • jira_list_filters - Search saved filters by name or owner
  • jira_get_filter - Get a filter (JQL, description, owner)
  • jira_search_by_filter - Execute a saved filter and return matching issues

Bulk Operations & Downloads

  • jira_bulk_transition_issues - Apply the same status transition to multiple issues
  • jira_download_attachment - Download an attachment to a local file

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | JIRA_HOST | Yes | Jira instance URL (HTTPS). Alias: JIRA_URL | | JIRA_EMAIL | Yes | Your Atlassian account email | | JIRA_API_TOKEN | Yes | API token from Atlassian | | JIRA_PROJECT_KEY | No | Default project key used when not specified in tool calls (e.g. MYPROJECT) | | JIRA_STORY_POINTS_FIELD | No | Custom field ID for story points (defaults to customfield_10016) |

Changelog

See CHANGELOG.md for full version history.

Recent

  • 2.6.2 — Fix: SERVER_VERSION constant now matches package version (was stale at 2.6.0)
  • 2.6.1 — Added 32 pre-baked MCP prompts (total 33) — every one of the 50 tools is now referenced in at least one workflow prompt. Enhanced cross-refs in tool descriptions (jira_create_issue, jira_update_issue, jira_assign_issue, jira_link_issues, jira_add_worklog).
  • 2.6.0 — Added 9 tools: watchers (add/remove/list), current user (myself), saved filters (list/get/run), bulk transition, attachment download
  • 2.5.0 — Added 7 Epic management tools: list, get, children, board epics, link/unlink, create
  • 2.4.0Breaking: removed automatic .env file loading (process.env only). Removed URL literals from prompt. Added socket.yml to scope supply-chain alerts to direct code only.
  • 2.3.11 — Pin @modelcontextprotocol/sdk; GitHub Actions publish workflow with npm provenance
  • 2.3.10 — Security: pin axios to exact 1.14.0 (mitigates [email protected] supply-chain compromise)
  • 2.3.9 — Update author contact email
  • 2.3.8 — Security: fix path traversal in attachments, JQL injection; upgrade MCP SDK (3 CVEs); full TypeScript strict typing
  • 2.3.7 — Add Changelog section to README for npm visibility
  • 2.3.6 — Fix API mismatches: search/jql pagination, createmeta response parsing
  • 2.3.5 — Add jira_update_comment, jira_delete_comment, security fixes
  • 2.3.4 — Markdown table ↔ ADF conversion
  • 2.3.0 — 10 new tools: sprints, boards, attachments, bulk create, changelog

Development

npm run build
npm start

License

MIT - see LICENSE file

Author

Volodymyr Press - [email protected]