MCP.so
Sign In

Jira communication server MCP Server

@Raghvendra2420

About Jira communication server MCP Server

No overview available yet

Basic information

Category

Version Control

License

MIT license

Runtime

node

Transports

stdio

Publisher

Raghvendra2420

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "Jira communication server": {
      "command": "node",
      "args": [
        "/PATH_TO_THE_PROJECT/build/index.js"
      ],
      "env": {
        "JIRA_URL": "",
        "JIRA_API_MAIL": "",
        "JIRA_API_KEY": ""
      }
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is Jira communication server MCP Server?

This is a TypeScript-based MCP server that provides tools to interact with Jira. It allows users to execute JQL queries, create, edit, and delete tickets, list projects and statuses, assign tickets, and add attachments. It is designed for developers using MCP clients such as Claude Desktop.

How to use Jira communication server MCP Server?

Install dependencies with npm install, build with npm run build, then configure the server by adding it to the Claude Desktop config file (claude_desktop_config.json) with the required environment variables (JIRA_URL, JIRA_API_MAIL, JIRA_API_KEY). After configuration, the MCP client can invoke the provided Jira tools.

Key features of Jira communication server MCP Server

  • Execute arbitrary JQL queries
  • Create, edit, and delete Jira tickets
  • List Jira projects and statuses
  • Assign tickets to users
  • Find assignable users in a project
  • Add attachments to tickets

Use cases of Jira communication server MCP Server

  • Automatically create and update tickets from a conversational assistant
  • Query Jira issues using natural language via an MCP client
  • Manage project statuses and ticket assignments programmatically
  • Integrate Jira operations into any MCP‑powered application

FAQ from Jira communication server MCP Server

What environment variables are required?

You must set JIRA_URL (your Atlassian instance URL), JIRA_API_MAIL (your email), and JIRA_API_KEY (an API token from Atlassian).

How do I install and configure the server?

Run npm install and npm run build, then add the server configuration to your Claude Desktop config file, providing the path to build/index.js and the three environment variables.

Can I debug the server?

Yes, use the MCP Inspector by running npm run inspector to obtain a debugging URL.

What tools does the server expose?

Tools include execute_jql, create_ticket, edit_ticket, delete_ticket, list_projects, get_all_statuses, assign_ticket, query_assignable, add_attachment, and get_only_ticket_name_and_description.

What runtime is required?

Node.js and npm are needed to install and run the TypeScript‑based server.

Comments

More Version Control MCP servers