MCP Server for JIRA
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Server for JIRAget details for issue PROJ-456"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Server for JIRA
This Model Context Protocol (MCP) server provides integration with JIRA, allowing ChatGPT and other AI assistants to work directly with JIRA issues.
function
This MCP server provides the following tools:
get_issue: Get detailed information about a JIRA issue
Related MCP server: Jira MCP Server
install
# リポジトリをクローン
git clone https://github.com/kuvanov-2/mcp-server-jira.git
cd mcp-server-jira
# 依存関係をインストール
npm install
# ビルド
npm run buildsetting
To use an MCP server, you must configure the following:
1. Advance preparation
1-1. Setting up 1Password CLI
Install the 1Password desktop app.
Install 1Password CLI.
brew install 1password-cliEnable CLI integration in the 1Password (desktop app) settings.
1-2. Obtaining JIRA API token
Get your JIRA API TOKEN here .
Store your JIRA API token in 1Password
2. Setting up Visual Studio Code
Open the configuration file:
macOS:
~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.jsonWindows:
%APPDATA%\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json
Add the following settings:
{
"mcpServers": {
"github.com/kuvanov-2/mcp-server-jira": {
"command": "/path/to/mcp-server-jira/start-server.sh",
"env": {
"JIRA_HOST": "https://your-domain.atlassian.net",
"JIRA_EMAIL": "your-email@example.com",
"JIRA_API_TOKEN": "op://YOUR_VAULT_NAME/YOUR_ITEM_NAME/info/access token"
},
"disabled": false,
"autoApprove": []
}
}
}Explanation of environment variables:
JIRA_HOST: JIRA host URLJIRA_EMAIL: Your JIRA account email addressJIRA_API_TOKEN: A reference to the JIRA API token stored in 1Password.
The JIRA API TOKEN is assumed to be stored in 1Password. For JIRA API Token , specify the path to the corresponding field in 1Password. The path can be copied by right-clicking the field.

start-server.sh script will automatically use the 1Password CLI to resolve the environment variables and start the server.
How to use
get_issue
Get the details of a JIRA issue.
<use_mcp_tool>
<server_name>github.com/kuvanov-2/mcp-server-jira</server_name>
<tool_name>get_issue</tool_name>
<arguments>
{
"issueKey": "PROJ-123"
}
</arguments>
</use_mcp_tool>license
MIT
Maintenance
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Enable secure connectivity between Sentry issues and debugging data, and LLM clients, using a Model Context Protocol (MCP) server.
A Model Context Protocol server for Wix AI tools
A Model Context Protocol (MCP) application for automated GitHub PR analysis and issue management.…
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceA server implementation that allows AI models to interact with Jira through the Model Context Protocol, enabling tasks like JQL searches and retrieving issue details.-
- AlicenseBqualityCmaintenanceA Model Context Protocol server that provides integration with Jira, allowing Large Language Models to interact with Jira projects, boards, sprints, and issues through natural language.530 npm3MIT
- AlicenseNot gradedqualityDmaintenanceA Simple Model Context Protocol server that enables AI assistants to interact with Jira, allowing operations like fetching tickets, adding comments, and updating ticket status.1Apache 2.0
- AlicenseCqualityDmaintenanceA Model Context Protocol server that enables AI assistants to create and manage JIRA issues with rich markdown formatting and automatic conversion to Atlassian Document Format.4MIT