jira-mcp
Provides read-only access to a Jira Server/Data Center instance, enabling JQL issue searches, issue details, comments, projects, issue types, current user info, server info, and allowed transitions.
Click on "Install 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., "@jira-mcpshow me open bugs in PRD"
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.
jira-mcp
Read-only MCP server for Jira Server / Data Center (REST API v2) at https://jira.tiddev.com.
It wraps Jira's REST API with Model Context Protocol tools so an MCP client (Claude, opencode, etc.) can query projects, issues, comments, transitions and issue types. No tool mutates data — every call is a read.
Tools
Tool | What it does |
| Search issues with a JQL query |
| Full details of one issue by key |
| Read-only comment list for an issue |
| List visible projects (keys for JQL) |
| List issue types |
| Current authenticated user (validates token) |
| Jira version / instance type |
| Allowed status transitions for an issue |
Related MCP server: Jira MCP Server
Setup
Build:
npm install npm run buildSmoke test (build + live checks when
JIRA_TOKENis set):npm run smokeEnd-to-end MCP protocol test (list tools + live
tools/callover a real stdio session):node scripts/e2e.mjs
Self-signed cert: this Jira uses a self-signed internal CA. At runtime set
NODE_TLS_REJECT_UNAUTHORIZED=0in the MCP client'senv(see config below) so HTTPS works. That TLS warning is expected on this internal instance.
Configuration (env)
Var | Required | Default | Notes |
| No |
| Base URL of the Jira instance |
| Yes | — | Your personal Jira token. Sent as |
This Jira instance has Basic user:password auth disabled; the token-style Bearer auth above is the working auth method (verified against the live server).
MCP client config (opencode)
{
"mcpServers": {
"jira": {
"command": "node",
"args": ["D:/Work/usdmf/jira-mcp/dist/index.js"],
"env": {
"JIRA_URL": "https://jira.tiddev.com",
"JIRA_TOKEN": "<your-token>",
"NODE_TLS_REJECT_UNAUTHORIZED": "0"
}
}
}
}Example calls
jira_search_issues→{"jql":"project in (PRD) AND type = Bug AND resolution is empty AND status in (To Do, In Progress) ORDER BY updated DESC","maxResults":10}jira_get_issue→{"key":"PRD-195770"}jira_get_comments→{"key":"PRD-195770"}jira_get_transitions→{"key":"PRD-195770"}
Notes
Transport is stdio; no network listener is opened.
Read-only by construction: the client exposes
get+search(the JQL POST) only.The token is read from the environment only and never logged or committed.
This server cannot be installed
Maintenance
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
- AlicenseNot gradedqualityDmaintenanceA read-only MCP server that enables querying and searching Atlassian Confluence pages and Jira issues through their REST APIs. Supports retrieving content by ID or URL, searching using CQL/JQL, and listing spaces and projects.1MIT
- FlicenseNot gradedqualityDmaintenanceProvides read-only issue and project management tools for Jira Server/DC, enabling querying issues, projects, and assignments via natural language.
- AlicenseNot gradedqualityBmaintenanceA read-only MCP server that provides AI agents structured access to Jira Cloud, enabling project listing, sprint overview, issue retrieval, and JQL search.98MIT
- AlicenseNot gradedqualityCmaintenanceEnables read-only interaction with JIRA instances via MCP, allowing searching issues, worklogs, sprints, users, and projects through natural language.MIT
Related MCP Connectors
Read-only MCP access to sessions, funnels, campaigns, errors, live visitors, and anomalies.
XFA's remote MCP server — query device posture, compliance, policies & CVEs. Read-only.
Search, document and execute authenticated API calls across 700+ apps via one MCP server
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/jabdon00/jira-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server