Developer shares CLI tools that work well with Claude Code

Switching from MCPs to CLIs for Claude Code
A developer on r/ClaudeAI shared their experience switching from MCPs (Model Context Protocols) to CLIs when working with Claude Code. They initially used MCPs but found them frustrating due to parameter errors, authentication issues, timeouts, and slower performance.
The developer discovered that Claude handles CLI commands effectively because it has been trained on years of shell scripts, documentation, Stack Overflow answers, and GitHub issues. Claude knows command flags, edge cases, and can compose commands in ways that would take the developer significant time to figure out manually.
Daily CLI tools used with Claude Code
The developer shared the specific command-line tools they use in their daily workflow with Claude Code:
gh(GitHub CLI) – For PRs, issues, code search, and other GitHub operations. They use the--jsonflag with--jqfor precise output. Claude can chain commands for workflows like creating issues, assigning them, opening PRs, and requesting reviews.ripgrep– For fast code search across large repositories, which they find better than standard grep. Claude uses it to find symbols, trace usage, and navigate unfamiliar codebases.stripe– For webhook testing, event triggering, and log tailing. The--output jsonflag makes it agent-friendly, saving manual work on payment flows.supabase– For local development, database management, and edge functions. Claude knows this CLI well and can run commands likesupabase startplus database commands to set up local environments.vercel– For deployment, environment variable management, and domain management. Token-based authentication (vercel --token $TOKEN) works without browser interaction.sentry-cli– For release management, source maps, and log tailing. The--format jsonflag throughout allows Claude to diagnose errors without manual stack trace copying.neon– For Postgres branch management from the terminal. Claude can spin up branches, test migrations, and tear them down, which helps avoid production issues.
The developer is compiling a list of CLIs that work well with Claude Code, focusing on those with structured output, non-interactive mode, and API key authentication. They're seeking additional CLI recommendations from the community.
📖 Read the full source: r/ClaudeAI
👀 See Also

Open source PR review agent PrixAI detects all 10/10 planted bugs at 6x lower cost than CodeRabbit
A Reddit user built PrixAI, an open source PR review agent that uses local/cheap inference models to match CodeRabbit's features at 6x less cost, detecting all 10 intentionally planted issues in a test PR.

MCP Slim: Local Embedding Search for MCP Tools Reduces Context Bloat
MCP Slim is a proxy that replaces full MCP tool catalogs with three meta-tools (search, describe, call), using local MiniLM embeddings for semantic search. It achieves 96% context window reduction and works offline without API keys.

skill-depot: A Local-First Memory and Skill System for MCP-Compatible AI Agents
skill-depot is a retrieval system that stores agent knowledge as Markdown files and uses vector embeddings to semantically search and selectively load only relevant content. It runs 100% locally with no API keys, works with any MCP-compatible agent, and can be set up with npx skill-depot init.

Kubeez MCP Server Connects Claude to 70+ AI Media Models
Kubeez has released an MCP server that connects Claude to over 70 AI models for image, video, music, and voice generation. The server supports OAuth authentication and provides async generation with Claude polling for status and returning CDN URLs.