Benchmark Results: GitHub CLI vs MCP Approaches for AI Agents

Benchmark Results: GitHub CLI vs MCP Approaches
A Reddit user conducted an independent study comparing different methods for exposing GitHub tools to AI agents. The benchmark tested four approaches: GitHub CLI, MCP (Model Context Protocol), MCP with Tool Search, and MCP with Code Mode, using real data and practical tasks.
Key Findings
- GitHub MCP is 2–3x more expensive to use than GitHub CLI. The source notes there's "almost no practical reason to use their MCP except for some of the different handling of security."
- Tool Search saves upfront tokens but spends them on extra turns. Whether this trade-off pays depends on task complexity. Tool Search also introduces a new failure mode due to imperfect search accuracy.
- Code Mode is the cheapest way to use MCP, but still 2x more expensive than CLI, and it's very slow. Code Mode introduces a unique failure mode when the agent writes buggy code or poor error handling.
- The benchmark suggests it's possible to push CLIs further toward higher success rates at lowest cost and latency with a principled design approach that treats agent ergonomics as a first-class concern.
Open Source Resources
The author has detailed their approach at https://axi.md and open-sourced the benchmark harness, results, and reference implementation of gh-axi at https://github.com/kunchenguid/axi.
📖 Read the full source: r/ClaudeAI
👀 See Also

Shield: Open-Source Security Plugin for Claude Code with Unified Scanning
Shield is an open-source security plugin for Claude Code that orchestrates multiple security tools from a single /shield:shield command, auto-detects your stack, runs installed tools, and generates unified reports with risk scores and code fix suggestions.

Open-source SwiftUI testing skill for Claude Code uses Computer Use to visually test apps
An open-source Claude Code skill called /ios-test visually tests SwiftUI apps using Computer Use capability. The agent finds .xcodeproj files, builds the app in a Simulator, then navigates through every screen, tapping buttons and following links like a real user.

Claude AI Opus Disables Intel DPST Auto-Dimming by Editing Registry in 0002 Key
A Reddit user automated the fix of Intel Display Power Saving Technology dimming by letting Claude AI Opus edit the registry — it found the correct FeatureTestControl value and key location.

Building a voice-controlled multi-agent system on top of Claude Code
A developer built a wake-word-activated voice loop for Claude Code that spawns sub-agents, parallelizes work, and auto-QAs results. Full technical breakdown including speaker verification and PID watcher.