Skip to main content
Glama
ashu-arora

Jira MCP Server

by ashu-arora

Jira MCP Server

An MCP (Model Context Protocol) server that connects VS Code Copilot to your Jira instance – Cloud, Server, or Data Center.

Quick Setup

1. Install & build

cd jira-mcp-server
npm install
npm run build

2. Configure credentials

Copy the example and fill in your values:

cp .env.example .env

Edit .env:

# Your Jira site URL
JIRA_BASE_URL=https://yourcompany.atlassian.net

# Your email (Cloud) or username (Server)
JIRA_EMAIL=you@yourcompany.com

# API token (Cloud) or Personal Access Token (Server)
JIRA_API_TOKEN=your-token-here

# "cloud" or "server"
JIRA_AUTH_TYPE=cloud

Where to get your token

Platform

How

Atlassian Cloud

Go to API TokensCreate API token

Jira Server/DC

Go to your Jira profile → Personal Access TokensCreate token

3. Connect to VS Code

Add this to your VS Code settings.json (or workspace .vscode/settings.json):

{
  "mcp": {
    "servers": {
      "jira": {
        "command": "node",
        "args": ["/absolute/path/to/jira-mcp-server/dist/index.js"],
        "env": {
          "JIRA_BASE_URL": "https://yourcompany.atlassian.net",
          "JIRA_EMAIL": "you@yourcompany.com",
          "JIRA_API_TOKEN": "your-token-here",
          "JIRA_AUTH_TYPE": "cloud"
        }
      }
    }
  }
}

Tip: Replace /absolute/path/to/jira-mcp-server with the actual path on your machine.

Related MCP server: Jira Stories MCP Server

Available Tools

Tool

Description

search_issues

Search issues with JQL

get_issue

Get full details of an issue by key

create_issue

Create a new issue

update_issue

Update fields on an existing issue

add_comment

Add a comment to an issue

get_transitions

List available status transitions

transition_issue

Move an issue to a new status

assign_issue

Assign an issue to a user

list_projects

List all accessible projects

get_myself

Get the authenticated user's profile

Example Prompts (in Copilot Chat)

  • "Show me Jira issues assigned to me"

  • "Get details of PROJ-123"

  • "Create a bug in project PROJ: Login page crashes on Safari"

  • "Move PROJ-456 to In Progress"

  • "Add a comment to PROJ-789: Fixed in commit abc123"

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • Connect to Atlassian Jira, Confluence, and Compass to search, create, and manage your work.

  • Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.

  • Connect AI assistants to your GitHub-hosted Obsidian vault to seamlessly access, search, and analy…

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ashu-arora/Jira-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server