================== /// MCP /// /// JIR /// ================== [server:online] [protocol:ready]
jira-mcp
by nguyenvanduocit
Go-based Model Context Protocol (MCP) server that lets AI assistants perform rich Jira operations (issue, sprint, workflow, etc.) through 20+ purpose-built tools.
41
10
SpecializedInstallation
Prerequisites
1. Go tool-chain v1.21 or newer
2. A Jira Cloud account with an API token and project access
3. An OpenAI/Claude-compatible AI agent that can speak the Model Context Protocol (MCP)
Steps
1. Fetch and build the binary
# Installs the CLI/server into your GOPATH/bin
go install github.com/nguyenvanduocit/jira-mcp/cmd/jira-mcp@latest
# Or clone & build manually
git clone https://github.com/nguyenvanduocit/jira-mcp.git
cd jira-mcp
go build -o jira-mcp ./cmd/jira-mcp
2. Export Jira credentials (replace with your real values)
export JIRA_BASE_URL="https://your-domain.atlassian.net"
export JIRA_USER_EMAIL="ai-bot@your-domain.com"
export JIRA_API_TOKEN="<atlassian-api-token>"
3. (Optional) Configure the HTTP port and listen address
export MCP_PORT=8080 # default 8080
export MCP_HOST=0.0.0.0 # default 127.0.0.1
4. Start the server
./jira-mcp --port ${MCP_PORT:-8080} --addr ${MCP_HOST:-127.0.0.1}
5. Point your AI assistant at the running endpoint, e.g.
http://localhost:8080/mcp
The MCP manifest will be served automatically so agents can self-discover available operations.
Documentation
# Transform Augment Code into Your Ultimate Jira-Powered Development Assistant Stop context-switching between your IDE and Jira. This powerful MCP server transforms Augment Code from a coding assistant into a comprehensive project management powerhouse, giving you **natural language control over your entire Jira workflow** without ever leaving your development environment. ## Seamless Jira Integration for Augment Code Add this MCP server to your Augment Code setup and watch your productivity soar. Instead of juggling browser tabs and remembering ticket numbers, simply tell Augment what you need: *"Show me all bugs assigned to me,"* *"Move PROJ-456 to In Progress and add a comment about the fix,"* or *"Create a subtask for implementing the user authentication feature."* With 20+ specialized tools covering every aspect of Jira workflow management, Augment becomes your intelligent project management companion that understands both your code and your tickets. The integration is effortless - configure the server through Augment's MCP settings with your Jira credentials, and you're ready to revolutionize your development workflow. Whether you're doing sprint planning, tracking issue relationships, managing worklogs, or transitioning tickets through complex workflows, Augment can now handle it all through natural conversation while you stay focused on coding. ## Real-World Developer Workflows Made Effortless Picture this: You're deep in a coding session when you realize you need to create a bug report for an edge case you just discovered. Instead of opening Jira, filling out forms, and losing your flow, you simply tell Augment: *"Create a bug ticket for the login timeout issue in the authentication module, set priority to high, and assign it to the backend team."* Or when you finish implementing a feature, say: *"Update ticket PROJ-123 status to Done, log 3 hours of work, and add a comment with the implementation details."* This MCP server enables Augment to become your project management autopilot, handling ticket creation, sprint management, issue linking, and workflow transitions while you maintain your coding momentum. The result? Dramatically reduced context switching, better project visibility, and a development workflow that actually works with your natural thought process rather than against it.
License: MIT License
Updated 7/15/2025