Loading...
npx @modelcontextprotocol/inspector{
"mcpServers": {
"jira": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "ATLASSIAN_HOST=https://your-company.atlassian.net",
"-e", "ATLASSIAN_EMAIL=your-email@company.com",
"-e", "ATLASSIAN_TOKEN=your-api-token",
"ghcr.io/nguyenvanduocit/jira-mcp:latest"
]
}
}
}jira_get_issueRetrieves detailed information about a specific Jira issue.
Read-only operation; no data modification.
jira_create_issueCreates a new Jira issue with specified details.
Creates new data; potential for misuse if not properly controlled.
jira_update_issueModifies an existing Jira issue's details.
Modifies existing data; requires careful validation to prevent errors.
jira_search_issueSearches for Jira issues using JQL.
Read-only operation; JQL injection risk mitigated by proper sanitization.
jira_transition_issueTransitions a Jira issue through its workflow.
Changes issue status; potential for workflow disruption if misused.
jira_add_commentAdds a comment to a Jira issue.
Adds data to an issue; potential for spam or inappropriate content.
jira_get_development_informationRetrieves development information (branches, pull requests, commits) linked to a Jira issue.
Read-only operation; no data modification.
jira_link_issuesCreates a link between two Jira issues, defining their relationship.
Creates relationships between issues; potential for incorrect or misleading links.
jira_add_worklogAdds a worklog entry to track time spent on an issue.
Adds data to an issue; potential for inaccurate time tracking.
This MCP server offers a balance of read and write capabilities for Jira. While the API token authentication provides a basic level of security, careful consideration should be given to the permissions granted to the token and the potential impact of write operations. It is relatively safe for read-only tasks but requires caution when using write operations.