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

@rambou/jira-mcp

v0.2.1-alpha

Published

A Jira MCP instance

Readme

jira-mcp

A Model Context Protocol (MCP) server for common Jira REST API actions, with built-in Tempo Timesheets worklog support for Jira Server/Data Center.

Install

npm install

Configure

Set these environment variables for the MCP server process:

  • JIRA_BASE_URL (required): Base Jira URL, for example https://jira.example.com
  • JIRA_TOKEN (required): Jira API token or Personal Access Token — also used to authenticate against the Tempo Timesheets plugin
  • JIRA_API_BASE_PATH (optional): Jira API base path, default /rest/api/3

Note: No separate Tempo credentials are needed. The Tempo Timesheets API is accessed at {JIRA_BASE_URL}/rest/tempo-timesheets/4 using the same JIRA_TOKEN.

Example MCP client configuration

This server uses stdio transport. In an MCP client that supports mcpServers (for example Claude Desktop/Cline/Cursor), configure it like this:

{
  "mcpServers": {
    "jira": {
      "command": "npx",
      "args": ["-y", "@rambou/jira-mcp"],
      "env": {
        "JIRA_BASE_URL": "https://jira.example.com",
        "JIRA_TOKEN": "your-token"
      }
    }
  }
}

For local development from this repository, you can also use:

npm start

Use from MCP clients

  1. Add the server configuration in your MCP client.
  2. Restart/reload the MCP client.
  3. Invoke one of the tools below from your client chat or tool UI.

Available MCP tools

Jira tools

  • jira_get_issue - Get issue details by key
  • jira_search_issues - Search with JQL
  • jira_create_issue - Create an issue
  • jira_generate_subtasks - Generate subtasks for a parent issue when the parent type allows subtasks
  • jira_add_comment - Add a comment to an issue (comment text should use Jira Wiki Markup, not Markdown)
  • jira_edit_issue_description - Edit an issue description (description text should use Jira Wiki Markup, not Markdown)
  • jira_transition_issue - Transition an issue by transition id
  • jira_amend_issue_labels - Add and/or remove labels on an issue

Tempo Timesheets worklog tools

These tools require the Tempo Timesheets plugin to be installed on your Jira Server/Data Center instance. They use the same JIRA_TOKEN for authentication.

  • tempo_list_worklogs - List Tempo worklogs for the current Jira user within a date range. Parameters: startDate (YYYY-MM-DD), endDate (YYYY-MM-DD).
  • tempo_create_worklog - Log time against a Jira issue. Parameters: issueKey, timeSpentHours, date (YYYY-MM-DD), description (optional), startTime (HH:MM, optional).
  • tempo_bulk_create_worklogs - Log time against multiple issues in one call. Parameter: worklogs (array of { issueKey, timeSpentHours, date, description?, startTime? }). Returns per-entry success/failure.
  • tempo_edit_worklog - Edit an existing Tempo worklog. Parameters: worklogId, timeSpentHours, date (optional), description (optional), startTime (optional).
  • tempo_delete_worklog - Delete a Tempo worklog by ID. Parameter: worklogId.

Prerequisite: The Tempo worklog tools use the current Jira user (identified by JIRA_TOKEN) as the worklog author. The tempo_list_worklogs tool also scopes results to that user.