A server for integrating Jira with Claude, enabling project and issue management. Requires configuration via environment variables.
Jira와 Claude를 연결하는 Model Context Protocol (MCP) 서버입니다.
.env
파일을 생성하고 다음 정보를 입력하세요:
JIRA_URL=https://your-domain.atlassian.net
JIRA_USERNAME=your-email@domain.com
JIRA_API_TOKEN=your-api-token
DEFAULT_PROJECT_KEY=PROJ
참고: 설정 파일들은 config/
폴더에 자동으로 생성됩니다.
.env
파일의 JIRA_API_TOKEN
에 입력npm install
대화형 설정 도구를 사용하여 쉽게 설정할 수 있습니다:
npm run setup
이 명령어는:
config/.env
파일을 자동으로 생성합니다config/claude_desktop_config.json
파일을 자동으로 생성합니다자동 설정 대신 수동으로 설정하려면 config/.env.example
파일을 복사하여 config/.env
로 이름을 바꾸고 값을 수정하세요.
npm start
Claude Desktop에서 이 MCP 서버를 사용하려면 설정 파일을 수정해야 합니다.
%APPDATA%\\Claude\\claude_desktop_config.json
파일을 편집:
{
"mcpServers": {
"jira": {
"command": "node",
"args": ["C:\\path\\to\\jira-mcp-server\\index.js"],
"env": {
"JIRA_URL": "https://your-domain.atlassian.net",
"JIRA_USERNAME": "your-email@domain.com",
"JIRA_API_TOKEN": "your-api-token",
"DEFAULT_PROJECT_KEY": "PROJ"
}
}
}
}
~/Library/Application Support/Claude/claude_desktop_config.json
파일을 편집:
{
"mcpServers": {
"jira": {
"command": "node",
"args": ["/path/to/jira-mcp-server/index.js"],
"env": {
"JIRA_URL": "https://your-domain.atlassian.net",
"JIRA_USERNAME": "your-email@domain.com",
"JIRA_API_TOKEN": "your-api-token",
"DEFAULT_PROJECT_KEY": "PROJ"
}
}
}
}
Claude에서 다음과 같은 명령을 사용할 수 있습니다:
"프로젝트 PROJ에서 상태가 Open인 이슈들을 찾아줘"
"PROJ 프로젝트에 '새로운 기능 개발' 제목으로 Task 이슈를 생성해줘"
"PROJ-123 이슈의 상태를 'In Progress'로 변경해줘"
"PROJ-123 이슈에 '작업을 시작했습니다' 댓글을 추가해줘"
MIT License
Dynamically search and call tools using UnifAI Network
Premium memory consistent across all AI applications.
Add smart Backup ability to coding agents like Windsurf, Cursor, Cluade Coder, etc
AnkiConnect MCP server for interacting with Anki via AnkiConnect.
A comprehensive travel planning server for flight search, accommodation booking, currency exchange, and weather forecasting.
A server for querying Jira issues, requiring a Jira token for authentication.
Simple unofficial MCP server to track time via Toggl API
Enhances AI reasoning by providing a structured thinking environment.
Trello Desktop MCP server that enables Claude Desktop to interact with Trello boards, cards, lists, and team members through natural language commands.
An intelligent tutoring server that uses GitHub documentation repositories to provide structured educational prompts and tools.