| Crates.io | jira-mcp-rs |
| lib.rs | jira-mcp-rs |
| version | 0.1.1 |
| created_at | 2026-01-03 13:27:44.296171+00 |
| updated_at | 2026-01-09 23:19:44.375903+00 |
| description | Model Context Protocol (MCP) server for Jira |
| homepage | |
| repository | https://github.com/katsuhirohonda/jira-mcp-rs |
| max_upload_size | |
| id | 2020059 |
| size | 123,886 |
Rust implementation of an MCP (Model Context Protocol) server for Jira integration.
| Variable | Description | Required |
|---|---|---|
JIRA_BASE_URL |
Your Jira instance URL (e.g., https://your-domain.atlassian.net) |
Yes |
JIRA_EMAIL |
Email address for Jira authentication | Yes |
JIRA_API_TOKEN |
Jira API token (Generate here) | Yes |
cargo build --release
Add to your MCP client configuration (e.g., ~/Library/Application Support/Claude/claude_desktop_config.json for Claude Desktop, or your Gemini config):
{
"mcpServers": {
"jira": {
"command": "/path/to/jira-mcp-rs/target/release/jira-mcp-rs",
"env": {
"JIRA_BASE_URL": "https://your-domain.atlassian.net",
"JIRA_EMAIL": "your-email@example.com",
"JIRA_API_TOKEN": "your-api-token"
}
}
}
}
Search for Jira issues using JQL.
Parameters:
jql (string, required): JQL query string (e.g., project = PROJ AND status = Open)max_results (number, optional): Maximum number of results (default: 50, max: 100)Get detailed information about a specific issue.
Parameters:
issue_key (string, required): The issue key (e.g., PROJ-123)Get child issues of a parent issue. Works for both epics (returns stories/tasks) and regular issues (returns subtasks).
Parameters:
parent_key (string, required): The parent issue key (e.g., EPIC-123 or STORY-456)max_results (number, optional): Maximum number of results (default: 50, max: 100)Get comments on a Jira issue with pagination support.
Parameters:
issue_key (string, required): The issue key (e.g., PROJ-123)start_at (number, optional): Starting index for pagination (default: 0)max_results (number, optional): Maximum number of comments to return (default: 50, max: 100)Add a comment to a Jira issue.
Parameters:
issue_key (string, required): The issue key (e.g., PROJ-123)comment (string, required): The comment text to add to the issueUpdate a Jira issue's fields.
Parameters:
issue_key (string, required): The issue key (e.g., PROJ-123)summary (string, optional): New summary/title for the issuedue_date (string, optional): Due date in YYYY-MM-DD format (e.g., 2025-01-31)priority (string, optional): Priority name (e.g., High, Medium, Low)assignee_account_id (string, optional): Assignee's account IDparent_key (string, optional): Parent issue key for subtasks or epic (e.g., EPIC-123)labels (array of strings, optional): Labels to set on the issuesrc/
├── main.rs # Entry point
├── server.rs # MCP server with tool definitions
├── jira/
│ ├── mod.rs # Jira API client
│ └── models.rs # Data structures (Issue, Comment, etc.)
└── tools/
├── mod.rs # Module exports
├── params.rs # Tool parameter definitions
└── formatters.rs # Output formatting functions
MIT