Zum Hauptinhalt springen
Echtzeit-Radar & Feeds
Alle RSS Feeds ➔
👥 Community & Social
•
IT Security NachrichtenBetrüger phishen mit vermeintlicher Reisebestätigung - IT-Markt(24.09.2026 um 23:41 Uhr)
••
Sicherheitslücken (CVE)IT Security News Daily Summary 2026-09-24(24.09.2026 um 23:55 Uhr)
•
Sicherheitslücken (CVE)IT Security News Roundup: 2026-09-24(24.09.2026 um 23:57 Uhr)
•
Sicherheitslücken (CVE)IT Security News Hourly Summary 2026-09-25 00h : 9 posts(25.09.2026 um 00:00 Uhr)
•••
IT NachrichtenMicrosoft puts Brad Smith in charge of communications(25.09.2026 um 00:08 Uhr)
•••
IT Security NachrichtenBetrüger phishen mit vermeintlicher Reisebestätigung - IT-Markt(24.09.2026 um 23:41 Uhr)
••
Sicherheitslücken (CVE)IT Security News Daily Summary 2026-09-24(24.09.2026 um 23:55 Uhr)
•
Sicherheitslücken (CVE)IT Security News Roundup: 2026-09-24(24.09.2026 um 23:57 Uhr)
•
Sicherheitslücken (CVE)IT Security News Hourly Summary 2026-09-25 00h : 9 posts(25.09.2026 um 00:00 Uhr)
•••
IT NachrichtenMicrosoft puts Brad Smith in charge of communications(25.09.2026 um 00:08 Uhr)
••
Intelligence View
⚡ tsecurity.de Intelligence

I built a Jira CLI for my AI agents. My team thinks I should have used MCP

I recently put together a tiny open-source tool: a non-interactive, JSON-first Jira CLI tailored for AI agents. I called it the "kubectl of Jira." The idea is simple: it’s a stateless binary that outputs clean JSON so agents can pipe data s…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

I recently put together a tiny open-source tool: a non-interactive, JSON-first Jira CLI tailored for AI agents. I called it the "kubectl of Jira." The idea is simple: it’s a stateless binary that outputs clean JSON so agents can pipe data straight into jq, grep, or wc without choking on interactive menus or ugly ASCII tables.



I shared it in our team chat, expecting a few code comments. Instead, I accidentally started a argument: In the age of LLMs, why are we still building CLIs? Why aren't we just using MCP servers?



Here is why my team thinks I'm living in the past, and why I still think the CLI wins.






The Argument for MCP (What my team says)



My colleagues made some good points.




  1. If you look at the MCP ecosystem, Jira servers already exist.


  2. They argued that MCP is fundamentally built for LLMs. It exposes clean, structured tool schemas natively. Instead of an agent trying to parse text or guess flags by running --help (which eats up tokens), an MCP server tells the model exactly what parameters it expects right out of the box. Plus, hitting a running MCP service over HTTP or standard I/O is computationally lighter than spawning a brand new OS process for every single command.




If you're building something with a session that is tied to your chat session, or your agent do not have a shell available, they are probably right. MCP is elegant.






Why I Still Prefer a CLI



Despite their pushback, I’m sticking with the CLI approach for three practical reasons:




  1. The MCP "Schema Tax" burns tokens



The true catch of MCP lies in its heavy JSON schema overhead. Whenever your agent initializes, the daemon dumps a verbose payload containing the names, descriptions, and strict parameters for every single tool directly into your context window. Unless you resort to clunky workarounds—like building a search_tool(query: string) to fetch capabilities dynamically—a server exposing 40 or 50 tools will burn thousands of tokens on raw protocol syntax before the agent even reads your prompt.



With a CLI, the LLM usually already knows the basic syntax from its training data. The agent runs a quick command, gets a tiny JSON blob back, and keeps 95% of its context window free for actual thinking.




  1. The Unix ecosystem is the ultimate tool schema



With MCP, if your agent wants to search for a ticket, filter it by status, and count the results, you have to explicitly code an endpoint that supports that exact sequence.



With a CLI, the agent just falls back on standard bash utilities it already knows by heart:




jira search jql "assignee = currentUser()" | jq -r '.[].key' | wc -l






I don't have to write custom API endpoints for edge-case queries. The terminal is the toolkit.




  1. Debugging via shell history



When an MCP agent breaks, debugging sucks. You have to hunt through daemon logs, look at JSON-RPC transport streams, and figure out what the state was when it died.



When a CLI agent breaks, it’s beautiful. I open my terminal, press the up arrow to look at the shell history, copy the exact command string the agent tried to run, and replay it myself.



To keep things secure, I added "Kubernetes-style" local context management (jira context set --project PROJ). It saves the default project to a local file on disk, giving the agent a hard, inspectable blast radius.






The Tool: @888aaen/jira-cli



If you want to try how it feels by yourself, you can it install the cli with




npm install -g @888aaen/jira-cli
npx skills@latest add AndersSpringborg/jira-agent-cli






and use it your own agent harness.



(The second command installs a skill file for your agent harness so it knows how to drive the binary out of the box).



The repo is here AndersSpringborg/jira-agent-cli






Where do you stand?



We are split on this internally. One side thinks CLIs are a temporary stopgap until MCP context management gets smarter. The other side thinks running daemons for basic API tasks is over-engineering.




  • Are you building CLIs or standing up MCP servers for your internal workflows?

  • How are you dealing with token bloating from massive MCP tool lists?

  • Is anyone using a hybrid setup—like CLIs for local hacking and MCP for production?

SOC Incident Playbook: Remote Code Execution (RCE) Defense
Syntax validiert (0 Fehler)
title: Detect Exploitation - I built a Jira CLI for my AI agents. My team thinks I should have used MCP
id: 8d197044-1044-4f87-9b37-6342db32a48c
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-25
logsource:
  category: network_connection
  product: any
detection:
  selection:
      CommandLine|contains:
        - 'exploit'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
Syntax validiert (0 Fehler)
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-25"
        description = "YARA Signature for "
    strings:
        $str = "I built a Jira CLI for my AI a" ascii wide
    condition:
        any of them
}
Syntax validiert (0 Fehler)
index=security sourcetype IN ("cisco:asa", "pan:traffic", "zeek_conn", "suricata", "WinEventLog:Security")
("I built a Jira CLI for my AI agents My t")
| stats count earliest(_time) as first_seen latest(_time) as last_seen by src_ip, dest_ip, dest_host, signature
| eval first_seen=strftime(first_seen, "%Y-%m-%d %H:%M:%S"), last_seen=strftime(last_seen, "%Y-%m-%d %H:%M:%S")
| sort - count
Syntax validiert (0 Fehler)
message: "*I built a Jira CLI for my AI agents My t*"
Syntax validiert (0 Fehler)
CommonSecurityLog
| where Message has "I built a Jira CLI for my AI agents My t"
| summarize EventCount = count(), FirstSeen = min(TimeGenerated), LastSeen = max(TimeGenerated) by SourceIP, DestinationIP, DestinationPort, Activity
| extend DetectionRule = "iShareStuff-CTI-Compiled"
| sort by EventCount desc
🎯
MITRE ATT&CK Matrix Navigator 14 Taktiken
Reconnaissance
-
Resource Development
-
Initial Access
Execution
Persistence
-
Privilege Escalation
Defense Evasion
Credential Access
-
Discovery
-
Lateral Movement
-
Collection
-
Command and Control
Exfiltration
-
Impact
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich I built a Jira CLI for my AI agents. My .... Basierend auf 368k Vektor-Korrelationen werden sofortige Isolationsmaßnahmen für betroffene Endpunkte empfohlen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

⚡ Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
🔗 Semantisch verwandte Zero-Days MariaDB 11.7 VEC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten I built a Jira CLI for my AI agents. My team thinks I should have used MCP

Thematisch verwandte Begriffe: built, Jira, agents, team · 6 Treffer

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-87722 | Uncontrolled Resource Consumption (CWE-400 / CWE-1333) in regex search q…
Advisory →
tsecurity.de Icon
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel • Rechts: nächster Artikel • unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel TTP ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...
↗ Original-Quelle