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 Server
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
Latest Blog Posts
- 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