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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@bodywave/jira-mcp

v1.0.25

Published

MCP server for Jira with full sprint management, bulk operations, and multi-account support

Downloads

1,528

Readme

@bodywave/jira-mcp

MCP (Model Context Protocol) server for Jira with full sprint management, bulk operations, and multi-account support.

Installation

With Claude Code

claude mcp add bodywave-jira --scope user -- env JIRA_URL=https://your-domain.atlassian.net [email protected] JIRA_API_KEY=your-api-key npx -y @bodywave/jira-mcp

Manual Configuration

Add to your ~/.claude.json or project .mcp.json:

{
  "mcpServers": {
    "bodywave-jira": {
      "command": "npx",
      "args": ["-y", "@bodywave/jira-mcp"],
      "env": {
        "JIRA_URL": "https://your-domain.atlassian.net",
        "JIRA_EMAIL": "[email protected]",
        "JIRA_API_KEY": "your-api-key"
      }
    }
  }
}

Environment Variables

| Variable | Description | Example | |----------|-------------|---------| | JIRA_URL | Your Jira instance URL | https://bodywave.atlassian.net | | JIRA_EMAIL | Your Atlassian account email | [email protected] | | JIRA_API_KEY | Jira API token (Generate here) | ATATT3xFfGF0... |

Available Tools

Issue Management

| Tool | Description | |------|-------------| | jira_get_issue | Get issue details | | jira_create_issue | Create a new issue | | jira_update_issue | Update an existing issue | | jira_delete_issue | Delete an issue | | jira_search_issues | Search with JQL | | jira_add_comment | Add a comment to an issue | | jira_transition_issue | Change issue status |

Sprint Management

| Tool | Description | |------|-------------| | jira_list_sprints | List sprints for a board | | jira_get_sprint | Get sprint details | | jira_create_sprint | Create a new sprint | | jira_update_sprint | Update sprint details | | jira_start_sprint | Start a sprint | | jira_complete_sprint | Complete/close a sprint | | jira_delete_sprint | Delete a sprint | | jira_get_sprint_issues | Get issues in a sprint | | jira_move_issues_to_sprint | Move issues to a sprint |

Board & Project Management

| Tool | Description | |------|-------------| | jira_list_projects | List all accessible projects | | jira_get_project | Get project details | | jira_list_boards | List boards (optionally by project) | | jira_get_board | Get board details |

User Management

| Tool | Description | |------|-------------| | jira_get_current_user | Get authenticated user info | | jira_search_users | Search for users |

Usage Examples

Create a sprint

Create a new sprint called "Sprint 5" for board 1 starting January 6th, ending January 17th

Move issues to sprint

Move issues BCM-101, BCM-102, and BCM-103 to sprint 42

Search with JQL

Search for all in-progress issues assigned to me: project = BCM AND status = "In Progress" AND assignee = currentUser()

Development

# Install dependencies
npm install

# Build
npm run build

# Run locally
node dist/index.js

# Run tests
npm test

License

MIT

Author

Bodywave [email protected]