Get the FREE Ultimate OpenClaw Setup Guide →

jira

Jira - LLM 모델을 연결할 MCP 서버

Installation
Run this command in your terminal to add the MCP server to Claude Code.
Run in terminal:
Command
claude mcp add --transport stdio sunwoobang-jira-mcp-server node index.js \
  --env JIRA_URL="https://your-domain.atlassian.net" \
  --env JIRA_USERNAME="your-email@domain.com" \
  --env JIRA_API_TOKEN="your-api-token" \
  --env DEFAULT_PROJECT_KEY="PROJ"

How to use

This MCP server connects Jira with Claude, exposing a set of tools to manage Jira issues and fetch project information through natural language prompts. The available tools include: search_issues for querying Jira with JQL, get_issue for retrieving details of a specific issue, create_issue to create new issues, update_issue to modify existing issues (such as status, summary, description, or assignee), add_comment to append comments to an issue, and get_project_info to retrieve information about a Jira project. Use Claude to issue commands like asking for open issues in a project, creating new tasks, updating statuses, or adding comments. Each tool maps to a Jira API operation, allowing you to automate workflows and summaries directly from natural language input. Ensure your Jira access is properly configured via the environment variables and the default project key is set for streamlined operations.

How to install

Prerequisites:

  • Node.js (LTS) and npm installed
  • Access to a Jira instance with an API token
  1. Clone or download the Jira MCP Server repository to your environment.

  2. Install dependencies:

npm install
  1. Create and configure environment variables. Create a .env file or use your environment to set:
JIRA_URL=https://your-domain.atlassian.net
JIRA_USERNAME=your-email@domain.com
JIRA_API_TOKEN=your-api-token
DEFAULT_PROJECT_KEY=PROJ
  1. Run the MCP server:
npm start
  1. (Optional) Configure Claude Desktop to point to the MCP server as shown in the README under Claude Desktop settings.

  2. If you need interactive setup, you can run:

npm run setup

This will guide you through entering Jira connection details and will generate config files accordingly.

Additional notes

Tips and common issues:

  • Ensure JIRA_URL, JIRA_USERNAME, and JIRA_API_TOKEN are correct and have the necessary permissions for the target projects.
  • If you encounter authentication errors, verify token validity and that the account has access to the project.
  • The DEFAULT_PROJECT_KEY should be set to the project you primarily operate on to simplify commands.
  • When using Claude Desktop, update claude_desktop_config.json to point to the correct node script path if you run the server outside the repository root.
  • For large Jira instances, consider pagination handling in search_issues responses and rate limiting.

Related MCP Servers

Sponsor this space

Reach thousands of developers