Jira MCP Server
Enables Jira issue management through natural language, including viewing, searching, creating, updating, and transitioning tasks via JQL and API operations.
README
Jira MCP Server
MCP (Model Context Protocol) сервер для интеграции с Jira.
Возможности
- get_issue - Получить детали задачи по ключу
- search_issues - Поиск задач через JQL
- create_issue - Создать новую задачу
- add_comment - Добавить комментарий к задаче
- update_issue - Обновить поля задачи
- get_transitions - Получить доступные переходы статусов
- transition_issue - Изменить статус задачи
Установка
1. Настройте .env файл
Отредактируйте .env и укажите ваши данные Jira:
JIRA_URL=https://your-domain.atlassian.net
JIRA_EMAIL=your-email@example.com
JIRA_API_TOKEN=your-api-token
Получить API токен через UI jira
2. Запуск через Docker
docker-compose up -d
Использование с Claude Desktop
Добавьте в конфигурацию Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"jira": {
"command": "docker",
"args": [
"exec",
"-i",
"jira-mcp-server",
"python",
"jira_mcp_server.py"
]
}
}
}
Использование с Claude CLI
claude mcp add jira --scope user -- docker exec -i jira-mcp-server python jira_mcp_server.py
Примеры использования
После подключения к Claude вы можете:
- "Покажи задачу PROJ-123"
- "Найди все открытые баги в проекте PROJ"
- "Создай новую задачу в проекте PROJ с названием 'Fix login bug'"
- "Добавь комментарий к PROJ-123: 'Работа завершена'"
- "Измени статус PROJ-123 на In Progress"
Разработка
Структура проекта:
├── jira_mcp_server.py # Основной код сервера
├── requirements.txt # Python зависимости
├── Dockerfile # Docker образ
├── docker-compose.yml # Docker Compose конфигурация
├── .env # Переменные окружения
└── README.md # Документация
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.
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.
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.
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.