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

jira-easy-mcp

v1.1.1

Published

MCP server for Jira with Basic Auth - works with username/password, no API tokens required

Readme

jira-easy-mcp

npm version GitHub

Another Model Context Protocol (MCP) server for Jira, without Auth token. Provides tools for complete Jira automation including issues, projects, boards, sprints, comments, worklogs, and more.

Tested on: Jira Server v7.12.3 (self-hosted)


🔑 Why This MCP?

Works with Basic Authentication (username + password) — no API tokens required!

Most Jira MCP servers require OAuth or API tokens, which many organizations restrict or don't allow. This MCP uses HTTP Basic Authentication, so you can connect using just your Jira username and password. Perfect for:

  • 🏢 Enterprise environments where admins don't allow API token creation
  • 🔒 Self-hosted Jira Server instances without OAuth configured
  • Quick setup without going through IT approval processes

Quick Start

Usage with IDE (cursor, github copilot)

Example: VS Code Workspace Configuration (Recommended)

Create .vscode/mcp.json in your project:

{
  "servers": {
    "jira": {
      "command": "npx",
      "args": ["-y", "jira-easy-mcp"],
      "env": {
        "JIRA_BASE_URL": "https://your-jira-instance.com",
        "JIRA_USERNAME": "your-username",
        "JIRA_PASSWORD": "your-password",
        "JIRA_PROJECTS_FILTER": "ABC,DEF,XYZ",
        "JIRA_RESPONSE_FORMAT": "JSON"
      }
    }
  }
}

Note: JIRA_PROJECTS_FILTER and JIRA_RESPONSE_FORMAT are optional. Projects filter limits access to specified projects. Response format can be JSON (default) or TOON (text-oriented notation).


Common Use Cases

| Task | Tool | Example Prompt | | --- | --- | --- | | Search issues | jira_search | "Search for all open bugs assigned to me in project ABC" | | Get issue details | jira_get_issue | "Show me the details of issue ABC-123" | | Create issue | jira_create_issue | "Create a new bug in project ABC with title 'Login button not working'" | | Update issue | jira_update_issue | "Change the priority of ABC-123 to High and assign it to john.doe" | | Add comment | jira_add_comment | "Add a comment to ABC-123 saying 'Fix deployed to staging'" | | Change status | jira_transition_issue | "Move ABC-123 to Done" | | Log time | jira_add_worklog | "Log 2 hours of work on ABC-123 for yesterday" | | List projects | jira_get_projects | "Show me all projects I have access to" | | View sprints | jira_get_sprints | "What's in the current sprint for project ABC?" | | Link issues | jira_create_link | "Link ABC-123 as blocking ABC-124" | | Generate filter URL | jira_generate_filter_url | "Create a shareable link for all open bugs updated in the last 7 days" |


Testing with MCP Inspector

The MCP Inspector provides a web UI to test all tools interactively:

npx @modelcontextprotocol/inspector npx jira-easy-mcp

This opens a browser at http://localhost:6274 where you can:

  • View all available tools
  • Test each tool with custom parameters
  • See the raw JSON responses

Note: Put these values inside inspector UI before connecting: JIRA_BASE_URL, JIRA_USERNAME, JIRA_PASSWORD.


Optional Environment Variables

| Variable | Default | Description | | --- | --- | --- | | JIRA_PROJECTS_FILTER | (none) | Comma-separated project keys to limit access | | JIRA_RESPONSE_FORMAT | JSON | Response format: JSON or TOON | | JIRA_LOG_LEVEL | INFO | Log verbosity: DEBUG, INFO, WARN, ERROR | | JIRA_TIMEOUT | 30000 | Request timeout in milliseconds | | JIRA_RETRY_COUNT | 3 | Number of retries for failed requests | | JIRA_RETRY_DELAY | 1000 | Base delay between retries (ms) | | JIRA_SSL_VERIFY | true | Set to false to skip SSL verification | | JIRA_CACHE_TTL | 300 | Cache TTL in seconds for static data |


Compatibility

| Jira Version | Status | | --- | --- | | Jira Server v7.12.3 | ✅ Tested | | Jira Server v8.x | ✅ Should work | | Jira Server v9.x | ✅ Should work | | Jira Cloud | ✅ Should work |

You can improve this by reporting issues