Jira Cli Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Jira Cli Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Model Context Protocol (MCP) server that wraps the Jira CLI tool, exposing Jira commands through MCP resources, tools, and prompts for AI assistant integration.
git clone https://github.com/yourusername/jira-cli-mcp.git
cd jira-cli-mcp uv sync
source .venv/bin/activate # On Windows: .venv\Scripts\activateThe server can be configured via environment variables:
JIRA_CONFIG_FILE: Path to a custom Jira CLI config fileJIRA_PROJECT: Default Jira project to useExample:
export JIRA_PROJECT="PROJ"
export JIRA_CONFIG_FILE="/path/to/config.yml"python main.pyBy default, the server will start on port 8080.
jira://issues - List recent issuesjira://issue/{issue_key} - View issue detailsjira://epics - List epicsjira://sprints - List sprintsjira://projects - List projectsjira://boards - List boardsjira://search/{jql} - Search issues with JQLcreate_issue - Create a new Jira issueedit_issue - Edit an existing Jira issueassign_issue - Assign issue to a usermove_issue - Move/transition issue to new statusadd_comment - Add comment to issuesearch_issues_tool - Search issues with flexible criteriaclone_issue - Clone an existing issuelink_issues - Link two issuescreate_epic - Create a new epicadd_to_sprint - Add issues to sprintcreate_bug_report - Template for creating a bug reportcreate_feature_request - Template for creating a feature requestdaily_standup_search - Search for issues relevant to daily standupissue_triage_workflow - Workflow for triaging new issuesThis MCP server can be integrated with AI assistants that support the Model Context Protocol. Example integration:
from mcp.client import MCPClient
# Connect to the MCP server
client = MCPClient("http://localhost:8080")
# Use resources
issues = client.fetch_resource("jira://issues")
# Execute tools
result = client.execute_tool("create_issue", {
"summary": "Fix login bug",
"issue_type": "Bug",
"priority": "High"
})
# Get prompts
template = client.get_prompt("create_bug_report", {
"component": "Authentication",
"severity": "High"
})Contributions are welcome! Please feel free to submit a Pull Request.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.