Jira communication server MCP Server
by Raghvendra2420
This is a TypeScript-based MCP server that provides tools to interact with Jira. It demonstrates core MCP concepts by providing functionalities like executing JQL queries and managing Jira tickets.
Last updated: N/A
What is Jira communication server MCP Server?
This MCP server is designed to facilitate communication and interaction with Jira instances. It provides a set of tools to perform various operations on Jira, such as querying, creating, editing, and deleting tickets.
How to use Jira communication server MCP Server?
To use this server, you need to install the dependencies, build the server, and configure it within Claude Desktop by adding the server config to the claude_desktop_config.json
file. Ensure you set the JIRA_URL
, JIRA_API_MAIL
, and JIRA_API_KEY
environment variables with your Jira credentials. After configuration, you can use the provided tools via the MCP protocol.
Key features of Jira communication server MCP Server
Execute JQL queries
Create, edit, and delete Jira tickets
List Jira projects and statuses
Assign tickets to users
Add attachments to tickets
Use cases of Jira communication server MCP Server
Automating Jira ticket management
Integrating Jira with other applications through MCP
Querying Jira for specific information using JQL
Streamlining Jira workflows
FAQ from Jira communication server MCP Server
How do I install the dependencies?
How do I install the dependencies?
Run npm install
in the project directory.
How do I build the server?
How do I build the server?
Run npm run build
in the project directory.
Where do I configure the server for Claude Desktop?
Where do I configure the server for Claude Desktop?
On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
. On Windows: %APPDATA%/Claude/claude_desktop_config.json
What environment variables are required?
What environment variables are required?
JIRA_URL
, JIRA_API_MAIL
, and JIRA_API_KEY
are required. Get the API key from: https://id.atlassian.com/manage-profile/security/api-tokens
How can I debug the server?
How can I debug the server?
Use the MCP Inspector by running npm run inspector
. This will provide a URL to access debugging tools in your browser.