Talk to Jira This is a TypeScript-based MCP server that provides tools to interact with Jira. It demonstrates core MCP concepts by providing: - Tools for executing JQL queries - Tools for creating, editing, and deleting Jira tickets - Tools for listing Jira projects and statuses - Purpose: Run a JQL query. - Parameters: jql, numberofresults (default: 1). - Purpose: Fetch ticket name and descriptio
Add this skill
npx mdskills install KS-GEN-AI/jira-mcp-serverComprehensive Jira integration with 11 well-documented tools covering tickets, queries, and assignments.
1# Jira communication server MCP Server23Talk to Jira45<a href="https://glama.ai/mcp/servers/v7nmyscj80">6 <img width="380" height="200" src="https://glama.ai/mcp/servers/v7nmyscj80/badge" alt="Jira Server MCP server" />7</a>89This is a TypeScript-based MCP server that provides tools to interact with Jira. It demonstrates core MCP concepts by providing:1011- Tools for executing JQL queries12- Tools for creating, editing, and deleting Jira tickets13- Tools for listing Jira projects and statuses1415## Features1617## Jira Tools1819### `execute_jql`2021- **Purpose**: Run a JQL query.22- **Parameters**: `jql`, `number_of_results` (default: 1).2324### `get_only_ticket_name_and_description`2526- **Purpose**: Fetch ticket name and description.27- **Parameters**: `jql`, `number_of_results` (default: 1).2829### `create_ticket`3031- **Purpose**: Create a Jira ticket.32- **Parameters**: `project.key`, `summary`, `description`, `issuetype.name`, `parent` (optional).3334### `list_projects`3536- **Purpose**: List Jira projects.37- **Parameters**: `number_of_results` (default: 1).3839### `delete_ticket`4041- **Purpose**: Delete a ticket.42- **Parameters**: `issueIdOrKey`.4344### `edit_ticket`4546- **Purpose**: Modify a ticket.47- **Parameters**: `issueIdOrKey`, `summary` (optional), `description` (optional), `labels` (optional), `parent` (optional).4849### `get_all_statuses`5051- **Purpose**: Retrieve all statuses.52- **Parameters**: `number_of_results` (default: 1).5354### `assign_ticket`5556- **Purpose**: Assign a ticket to a user.57- **Parameters**: `accountId`, `issueIdOrKey`.5859### `query_assignable`6061- **Purpose**: Find assignable users in a project.62- **Parameters**: `project_key`.6364### `add_attachment_from_public_url`6566- **Purpose**: Add an attachment from a public URL to a ticket.67- **Parameters**: `issueIdOrKey`, `imageUrl`.6869### `add_attachment_from_confluence`7071- **Purpose**: Add an attachment from a Confluence page to a ticket.72- **Parameters**: `issueIdOrKey`, `pageId`, `attachmentName`.7374## Development7576Install dependencies:7778```bash79npm install80```8182Build the server:8384```bash85npm run build86```8788For development with auto-rebuild:8990```bash91npm run watch92```9394## Installation9596To use with Claude Desktop, add the server config:9798On MacOS: `~/Library/Application Support/Claude/claude_desktop_config.json`99On Windows: `%APPDATA%/Claude/claude_desktop_config.json`100101```json102{103 "mcpServers": {104 "Jira communication server": {105 "command": "node",106 "args": ["/PATH_TO_THE_PROJECT/build/index.js"],107 "env": {108 "JIRA_URL": "https://XXXXXXXX.atlassian.net",109 "JIRA_API_MAIL": "Your email",110 "JIRA_API_KEY": "KEY_FROM : https://id.atlassian.com/manage-profile/security/api-tokens"111 }112 }113 }114}115```116117### Debugging118119Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the [MCP Inspector](https://github.com/modelcontextprotocol/inspector), which is available as a package script:120121```bash122npm run inspector123```124125The Inspector will provide a URL to access debugging tools in your browser.126
Full transparency — inspect the skill content before installing.