mcp-jira
Enables interaction with Jira issues, projects, and comments via API Key. Supports operations like creating, updating, searching, transitioning issues, and managing projects.
README
jira-mcp
MCP server para integração com Jira via API Key, empacotado em Docker.
Pré-requisitos
- Docker + Docker Compose
- Node.js 20+ (apenas para dev local)
- API Key do Jira: https://id.atlassian.com/manage-profile/security/api-tokens
Setup
1. Crie o arquivo .env
cp .env.example .env
# edite .env com suas credenciais
2. Build da imagem
docker compose build
3. Teste rápido (opcional)
docker run --rm --env-file .env jira-mcp:latest
# deve imprimir: [jira-mcp] Server running — connected to ...
Configuração no Claude Desktop
Edite ~/Library/Application Support/Claude/claude_desktop_config.json (macOS)
ou %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"jira": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"--env-file", "/caminho/absoluto/para/.env",
"jira-mcp:latest"
]
}
}
}
Importante: use o caminho absoluto para o
.env. O-imantém o stdin aberto, necessário para o transporte stdio do MCP.
Ferramentas disponíveis
| Ferramenta | Descrição |
|---|---|
jira_get_issue |
Detalhes de uma issue pelo key (ex: PROJ-123) |
jira_search_issues |
Busca com JQL |
jira_create_issue |
Cria nova issue |
jira_update_issue |
Atualiza campos de uma issue |
jira_add_comment |
Adiciona comentário |
jira_get_transitions |
Lista transições disponíveis |
jira_transition_issue |
Move issue para novo status |
jira_get_projects |
Lista todos os projetos |
jira_whoami |
Retorna info do usuário autenticado |
Exemplos de JQL
# Issues abertas no projeto PROJ
project = PROJ AND status != Done ORDER BY updated DESC
# Minhas issues em andamento
assignee = currentUser() AND status = "In Progress"
# Bugs de alta prioridade criados essa semana
issuetype = Bug AND priority in (High, Highest) AND created >= startOfWeek()
# Issues sem responsável num projeto
project = PROJ AND assignee is EMPTY
Dev local (sem Docker)
npm install
cp .env.example .env # preencha as variáveis
npx ts-node src/index.ts
Segurança
- Credenciais carregadas via variáveis de ambiente, nunca no código
- Container roda como usuário não-root (
mcp) read_only: trueecap_drop: ALLno compose- API Key nunca é logada (redactada em mensagens de erro)
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.