/ Verzeichnis / Playground / jira-skill
● Community netresearch ⚡ Sofort

jira-skill

von netresearch · netresearch/jira-skill

Two skills (jira-communication + jira-syntax) wrapping Jira Server/DC and Cloud APIs via shell — issues, JQL, sprints, worklogs, attachments, no Docker needed.

A Claude Code skill pack for Jira with no container dependency. jira-communication covers API operations (get / update / search by JQL / transition / comment / link / worklog / attach / board + sprint management). jira-syntax helps with Jira wiki markup. Works with Server/DC and Cloud via env-based credentials, includes an interactive jira-setup.py for config.

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

jira-skill.replay ▶ bereit
0/0

Installieren

Wählen Sie Ihren Client

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "jira-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/netresearch/jira-skill",
        "~/.claude/skills/jira-skill"
      ],
      "_inferred": true
    }
  }
}

Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "jira-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/netresearch/jira-skill",
        "~/.claude/skills/jira-skill"
      ],
      "_inferred": true
    }
  }
}

Cursor nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "jira-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/netresearch/jira-skill",
        "~/.claude/skills/jira-skill"
      ],
      "_inferred": true
    }
  }
}

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "jira-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/netresearch/jira-skill",
        "~/.claude/skills/jira-skill"
      ],
      "_inferred": true
    }
  }
}

Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "jira-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/netresearch/jira-skill",
        "~/.claude/skills/jira-skill"
      ]
    }
  ]
}

Continue nutzt ein Array von Serverobjekten statt einer Map.

~/.config/zed/settings.json
{
  "context_servers": {
    "jira-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/netresearch/jira-skill",
          "~/.claude/skills/jira-skill"
        ]
      }
    }
  }
}

In context_servers hinzufügen. Zed lädt beim Speichern neu.

claude mcp add jira-skill -- git clone https://github.com/netresearch/jira-skill ~/.claude/skills/jira-skill

Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.

Anwendungsfälle

Praxisnahe Nutzung: jira-skill

Triage a sprint backlog and unstick blocked issues

👤 Scrum masters, tech leads ⏱ ~20 min beginner

Wann einsetzen: Mid-sprint when velocity is dropping and you suspect blockers.

Voraussetzungen
  • Jira credentials configured — Run jira-setup.py and provide URL + email + API token (Cloud) or PAT (Server/DC)
  • Skill installed — git clone https://github.com/netresearch/jira-skill ~/.claude/skills/jira-skill
Ablauf
  1. List sprint issues by status
    Use jira-skill. List issues in sprint 'Sprint 42' grouped by status. Flag anything not updated in 3 days.✓ Kopiert
    → Grouped table with staleness markers
  2. Drill into blockers
    For the blocked issues, pull the last comment and linked issues — who's waiting on what?✓ Kopiert
    → Dependency summary
  3. Nudge owners
    Draft a comment on each blocked issue pinging the responsible party.✓ Kopiert
    → Per-issue drafts

Ergebnis: A clear list of unblock actions to drive in standup.

Fallstricke
  • Over-pinging — comments cost attention — Let Claude draft; post manually only the ones that matter
Kombinieren mit: github

Generate release notes from closed issues

👤 Release managers ⏱ ~15 min beginner

Wann einsetzen: Cutting a release and need user-facing notes from the issue list.

Ablauf
  1. JQL for the release
    JQL: fixVersion = 1.42 AND status = Done. Pull summaries and types.✓ Kopiert
    → Ordered issue list
  2. Draft notes
    Group by type (Feature / Bug / Improvement) and write user-facing release notes — no internal jargon.✓ Kopiert
    → Markdown notes ready to publish

Ergebnis: Release notes in minutes instead of hours.

Kombinieren mit: github

Bulk-transition issues through a workflow

👤 Project admins ⏱ ~10 min intermediate

Wann einsetzen: Moving a batch of issues between statuses (e.g. deploy-complete).

Ablauf
  1. Dry-run first
    Find all 'In Staging' issues with fixVersion = 1.42. Don't transition yet — just list.✓ Kopiert
    → List to confirm
  2. Transition
    Transition those to 'Done' with a comment 'Deployed to production in 1.42'.✓ Kopiert
    → Per-issue transition result

Ergebnis: Clean workflow state, nothing left in 'In Staging'.

Fallstricke
  • Missing required fields on transition — Skill surfaces the required field; supply it in the prompt

Summarize a team's worklog for the month

👤 Engineering managers, PMs tracking capacity ⏱ ~20 min intermediate

Wann einsetzen: Month-end capacity review.

Ablauf
  1. Query worklogs
    Pull all worklogs for team members in project ACME for last month.✓ Kopiert
    → Per-person, per-issue hour totals
  2. Summarize
    Roll up to epic and share of total.✓ Kopiert
    → Top-level breakdown

Ergebnis: Capacity picture grounded in actual logged work.

Fallstricke
  • Worklogs aren't filled in — bad data — Flag people with 0 logs; don't draw conclusions from missing data

Kombinationen

Mit anderen MCPs für 10-fache Wirkung

jira-skill + github

Link PRs to Jira issues or create Jira issues from GitHub bugs

For each GitHub issue labeled 'bug' opened this week, create a Jira ticket in project ACME.✓ Kopiert

Werkzeuge

Was dieses MCP bereitstellt

WerkzeugEingabenWann aufrufenKosten
get_issue issue key Anytime 1 API call
search_jql JQL string Discovery 1 API call
create_issue project, type, summary, description Filing new issue 1 API call (write)
transition_issue key, transition id/name Workflow moves 1 API call (write)
add_comment key, body (jira-syntax ok) Nudges + notes 1 API call (write)
link_issues key, inward, link type Dependencies 1 API call
add_worklog key, time, comment Time tracking 1 API call
sprint_manage board, sprint, action Scrum ops 1 API call

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
Jira Cloud: 10 req/sec per user typical; Server/DC is instance-configured
Tokens pro Aufruf
Low — mostly API responses
Kosten in €
Free skill; Jira license separate
Tipp
Use JQL server-side filters rather than pulling all and filtering client-side

Sicherheit

Rechte, Secrets, Reichweite

Minimale Scopes: Read project; write only where needed (transition/comment)
Credential-Speicherung: JIRA_URL + JIRA_USER + JIRA_TOKEN in env; don't check into git
Datenabfluss: Only to your Jira host
Niemals gewähren: Admin on the instance

Fehlerbehebung

Häufige Fehler und Lösungen

401 Unauthorized

Token missing or revoked; re-run jira-setup.py

Prüfen: curl -u $JIRA_USER:$JIRA_TOKEN $JIRA_URL/rest/api/2/myself
400 on transition

Transition requires a field you didn't provide — inspect transitions with get_transitions

Search returns 0 but issues exist

Your JQL or project permissions; verify the user can see the project

Alternativen

jira-skill vs. andere

AlternativeWann stattdessenKompromiss
Atlassian's official MCPYou prefer first-party integrationLess control over shell access

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen