https://github.com/nguyenvanduocit/jira-mcp
https://github.com/nguyenvanduocit/jira-mcp
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nguyenvanduocit/jira-mcp
- Owner: nguyenvanduocit
- Created: 2025-03-25T13:35:58.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-03-25T13:43:11.000Z (3 months ago)
- Last Synced: 2025-03-25T14:37:58.745Z (3 months ago)
- Language: Go
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-devops-mcp-servers - nguyenvanduocit/jira-mcp - A Go-based MCP connector for Jira that enables AI assistants like Claude to interact with Atlassian Jira. This tool provides a seamless interface for AI models to perform common Jira operations including issue management, sprint planning, and workflow transitions. (Project & Service Management / 📋 Project Management)
- awesome-devops-mcp-servers - nguyenvanduocit/jira-mcp - A Go-based MCP connector for Jira that enables AI assistants like Claude to interact with Atlassian Jira. This tool provides a seamless interface for AI models to perform common Jira operations including issue management, sprint planning, and workflow transitions. (Project & Service Management / 📋 Project Management)
- mcp-index - Jira MCP - Connects AI models to Atlassian Jira for performing operations such as managing issues, retrieving comments, and interacting with sprints in a seamless manner. (APIs and HTTP Requests)
README
# Jira MCP
A tool for interacting with Jira API through MCP.
## Features
- Get issue details
- Search issues with JQL
- List and manage sprints
- Create and update issues
- List available statuses
- Transition issues through workflows## Installation
There are several ways to install the Script Tool:
### Option 1: Download from GitHub Releases
1. Visit the [GitHub Releases](https://github.com/nguyenvanduocit/jira-mcp/releases) page
2. Download the binary for your platform:
- jira-mcp_linux_amd64` for Linux
- `jira-mcp_darwin_amd64` for macOS
- `jira-mcp_windows_amd64.exe` for Windows
3. Make the binary executable (Linux/macOS):
```bash
chmod +x jira-mcp_*
```
4. Move it to your PATH (Linux/macOS):
```bash
sudo mv jira-mcp_* /usr/local/bin/jira-mcp
```### Option 2: Go install
```
go install github.com/nguyenvanduocit/jira-mcp
```## Config
### Environment
1. Set up environment variables in `.env` file:
```
ATLASSIAN_HOST=your_atlassian_host
ATLASSIAN_EMAIL=your_email
ATLASSIAN_TOKEN=your_token
```
2. Build and run the tool### Claude, cursor
```
{
"mcpServers": {
"script": {
"command": "/path-to/script-mcp",
"args": ["-env", "path-to-env-file"]
}
}
}
```## Contributing
1. Fork the repository
2. Create your feature branch (`git checkout -b feature/amazing-feature`)
3. Commit your changes (`git commit -m 'Add some amazing feature'`)
4. Push to the branch (`git push origin feature/amazing-feature`)
5. Open a Pull Request## License
This project is licensed under the MIT License - see the LICENSE file for details.