JIRA MCP Server
Servidor JIRA MCP para cursor
✨ Características
Acceda a JIRA directamente desde el cursor
Visualiza tus problemas asignados sin salir de tu IDE
Obtenga información detallada sobre problemas específicos con un solo comando
Convierta problemas de JIRA en tareas locales sin problemas
⏰ Integración de la hora del sistema
Formato de fecha y hora personalizable
Compatibilidad con la configuración regional mediante date-fns
Related MCP server: JIRA MCP Server
🚀 Inicio rápido
Instalación
# Clone the repository
git clone https://github.com/Dsazz/mcp-jira.git
cd mcp-jira
# Install dependencies
npm install
# Set up environment variables
cp .env.example .env
# Edit .env with your JIRA credentialsConfiguración
Crea un archivo .env con las siguientes variables:
JIRA_HOST=https://your-instance.atlassian.net
JIRA_USERNAME=your-email@example.com
JIRA_API_TOKEN=your-jira-api-token-here🔑 Nota importante sobre los tokens de API de JIRA
Los tokens pueden contener caracteres especiales, incluido el signo
=Coloque el token en una sola línea en el archivo
.envNo agregue comillas alrededor del valor del token
Pegue el token exactamente como lo proporciona Atlassian
🛠️ Herramientas de desarrollo
Inspector de MCP
El Inspector MCP es una herramienta poderosa para probar y depurar su servidor MCP.
# Run the inspector (no separate build step needed)
npm run inspectEl inspector automáticamente:
Carga variables de entorno desde
.envLimpia los puertos ocupados (5175, 3002)
Construye el proyecto cuando es necesario
Inicia el servidor MCP con su configuración
Inicia la interfaz de usuario del inspector
Visita al inspector en http://localhost:5175?proxyPort=3002
Si encuentra conflictos de puertos:
npm run cleanup-portsDepuración con el Inspector
La interfaz de usuario del inspector le permite:
Ver todas las capacidades MCP disponibles
Ejecutar herramientas y examinar respuestas
Analizar la comunicación JSON
Prueba con diferentes parámetros
Para obtener más detalles, consulte el repositorio de GitHub de MCP Inspector .
Integración con Claude Desktop
Pruebe su servidor MCP directamente con Claude:
Construya y ejecute su servidor:
npm run build # You must build the project before running it node dist/index.jsConfigurar Claude Desktop:
nano ~/Library/Application\ Support/Claude/claude_desktop_config.jsonAgregue la configuración de MCP:
{ "mcpServers": { "JIRA Tools": { "command": "node", "args": ["/absolute/path/to/your/project/dist/index.js"], "env": { "JIRA_USERNAME": "your-jira-username", "JIRA_API_TOKEN": "your-jira-api-token", "JIRA_HOST": "your-jira-host.atlassian.net" } } } }Reinicie Claude Desktop y pruebe con:
What time is it right now?o
Show me my assigned JIRA issues.
🔌 Integración con Cursor IDE
⚠️ Importante: Debes compilar el proyecto con
npm run buildantes de integrarlo con Cursor IDE o Claude Desktop.
Agregue este servidor MCP a la configuración MCP de su Cursor IDE:
{
"mcpServers": {
"JIRA Tools": {
"command": "node",
"args": ["/absolute/path/to/your/project/dist/index.js"],
"env": {
"JIRA_USERNAME": "your-jira-username",
"JIRA_API_TOKEN": "your-jira-api-token",
"JIRA_HOST": "your-jira-host.atlassian.net"
}
}
}
}🧰 Herramientas disponibles
Herramientas de JIRA
Herramienta | Descripción | Parámetros | Devoluciones |
| Recupera todos los problemas que te fueron asignados | Ninguno | Lista de problemas en formato Markdown |
| Obtiene información detallada sobre un problema específico |
| Detalles del problema en formato Markdown |
| Crea una tarea local a partir de un problema de JIRA |
| Tarea con formato Markdown |
Herramientas de tiempo del sistema
Herramienta | Descripción | Parámetros | Devoluciones |
| Obtiene la hora actual del sistema |
| Cadena de fecha y hora formateada |
📁 Estructura del proyecto
src/
├── features/ # MCP features (JIRA, system time)
├── server/ # MCP server implementation
├── shared/ # Shared utilities
└── index.ts # Main entry pointScripts de NPM
Dominio | Descripción |
| Construir el proyecto |
| Construir y publicar el paquete en el registro npm |
| Ejecutar con el inspector MCP para depuración |
| Puertos de liberación utilizados por el inspector |
| Ejecutar pruebas |
📘 Recursos
📄 Licencia
MIT © Stanislav Stepanenko
Maintenance
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceModel Context Protocol (MCP) server for Atlassian Cloud products (Confluence and Jira). This integration is designed specifically for Atlassian Cloud instances and does not support Atlassian Server or Data Center deployments.5,796MIT
- FlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that enables seamless integration between Cursor IDE and JIRA, allowing users to retrieve issues, execute JQL searches, and log work through natural language interactions.
- AlicenseBqualityCmaintenanceA Model Context Protocol server that provides integration with Jira, allowing Large Language Models to interact with Jira projects, boards, sprints, and issues through natural language.5223MIT
- FlicenseAqualityDmaintenanceA Model Context Protocol (MCP) server that provides tools for interacting with Jira. Enables Cursor and other MCP clients to fetch tickets, manage linked tickets, and update ticket status.3
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
The Figma MCP server brings Figma design context directly into your AI workflow.
A MCP server built for developers enabling Git based project management with project and personal…
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/Dsazz/mcp-jira'
If you have feedback or need assistance with the MCP directory API, please join our Discord server