jira-minimal-mcp
Provides tools for interacting with Jira issues, including reading, searching via JQL, creating, updating, assigning, and managing comments.
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-minimal-mcpshow me issue PROJ-123"
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-minimal-mcp
Minimal MCP server for Jira. Only ~150-1500 tokens vs ~25,000 for official Atlassian MCP.
Installation
Docker (recommended)
docker pull vertliba/jira-minimal-mcpuv (local)
uv tool install git+https://github.com/vertliba/jira-minimal-mcpRelated MCP server: jira-mcp
Usage
Basic (only get_issue, ~150 tokens)
docker run -i --rm \
-e JIRA_URL=https://xxx.atlassian.net \
-e JIRA_USERNAME=user@example.com \
-e JIRA_API_TOKEN=xxx \
vertliba/jira-minimal-mcpWith additional features
docker run -i --rm \
-e JIRA_URL=https://xxx.atlassian.net \
-e JIRA_USERNAME=user@example.com \
-e JIRA_API_TOKEN=xxx \
vertliba/jira-minimal-mcp \
--enable-search --enable-commentsAll features (~1500 tokens)
docker run -i --rm \
-e JIRA_URL=https://xxx.atlassian.net \
-e JIRA_USERNAME=user@example.com \
-e JIRA_API_TOKEN=xxx \
vertliba/jira-minimal-mcp \
--enable-allCLI Arguments
Argument | Description | Tools |
(none) | Base functionality |
|
| JQL queries |
|
| Create issues |
|
| Update issues |
|
| Comments |
|
| All tools | All of the above |
Environment Variables
Variable | Required | Description |
| Yes | Jira instance URL (e.g., |
| Yes | Jira username/email |
| Yes | Jira API token (create here) |
MCP Client Configuration
Claude Code (.mcp.json)
{
"mcpServers": {
"jira": {
"command": "docker",
"args": ["run", "-i", "--rm", "--network", "host",
"-e", "JIRA_URL", "-e", "JIRA_USERNAME", "-e", "JIRA_API_TOKEN",
"vertliba/jira-minimal-mcp", "--enable-search"],
"env": {
"JIRA_URL": "https://xxx.atlassian.net",
"JIRA_USERNAME": "user@example.com",
"JIRA_API_TOKEN": "YOUR_TOKEN"
}
}
}
}Codex (config.toml)
[mcp_servers.jira]
command = "docker"
args = ["run", "-i", "--rm", "--network", "host",
"-e", "JIRA_URL", "-e", "JIRA_USERNAME", "-e", "JIRA_API_TOKEN",
"vertliba/jira-minimal-mcp", "--enable-search"]
env = { JIRA_URL = "https://xxx.atlassian.net", JIRA_USERNAME = "user@example.com", JIRA_API_TOKEN = "YOUR_TOKEN" }Local (uv)
{
"mcpServers": {
"jira": {
"command": "uv",
"args": ["run", "jira-minimal-mcp", "--enable-search"],
"env": {
"JIRA_URL": "https://xxx.atlassian.net",
"JIRA_USERNAME": "user@example.com",
"JIRA_API_TOKEN": "YOUR_TOKEN"
}
}
}
}Why?
The official Atlassian MCP server includes 28 tools and consumes ~25,000 tokens of context on every request. This is wasteful if you only need to read issues.
jira-minimal-mcp starts with just 1 tool (~150 tokens) and lets you add only what you need.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceA lightweight MCP server that exposes Jira issue operations (get, search, create) as tools for AI clients like Claude.65ISC
- AlicenseNot gradedqualityCmaintenanceA token-lean MCP server for Jira Cloud that enables natural language interaction with issues, comments, transitions, and more through a set of seven normalized tools, reducing token usage via field allowlists and ADF-to-Markdown conversion.2MIT
- AlicenseNot gradedqualityBmaintenanceMCP server for Jira Cloud that lets AI agents search, read, and write Jira issues using your own Atlassian account and API token, with write operations gated behind explicit opt-in.291MIT
- FlicenseAqualityBmaintenanceMCP server enabling AI assistants to interact with Jira, scoped to a single project. Supports stdio and HTTP transports for issue management operations.12
Related MCP Connectors
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
MCP server for secureFlows: token-free URL builders and integration-linting tools for AI agents.
MCP server for Pentest-Tools.com: run scans, manage findings and reports via your preffered LLM.
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/vertliba/jira-minimal-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server