Project ideas from Hacker News discussions.

When does MCP make sense vs CLI?

📝 Discussion Summary (Click to expand)

Four dominant themes in the discussion

# Theme Key points & representative quotes
1 Token‑efficiency & context cost “MCP has one thing going for it as an agentic API standard: token efficiency” (recursivedoubts).
“MCP is expensive and doesn’t make up for better instructions using lighter‑weight tools” (steve_adams_86).
2 Security & sandboxing “MCPs have provided any easy way to side‑step that baggage” (fastball).
“MCPs are a guard‑railed API around some enterprise service” (femiagbabiaka).
3 Use‑case fit (enterprise vs developer) “MCP is great for non‑developers and enterprise integration” (phpnode).
“CLI wins when the task is well‑defined and atomic” (hkbuilds).
4 Composability & flexibility “MCP tool calls aren’t composable” (ejholmes).
“The composability argument is what really sold me” (bhekanik).

These four themes capture the core of the debate: whether MCP’s structured, token‑efficient interface is worth the overhead, how it handles security, which audiences benefit most, and whether it can support the chaining and flexibility that CLIs naturally provide.


🚀 Project Ideas

Token‑Efficient MCP Wrapper

Summary

  • Compresses and lazily loads MCP tool definitions to cut context token usage by up to 70 %.
  • Provides a lightweight CLI wrapper that translates MCP calls into streaming JSON RPC, keeping only the minimal schema needed for each call.
  • Enables agents to discover tools on demand, avoiding the 54k‑token MCP spec dump.

Details

Key Value
Target Audience AI developers building agents that use MCP for enterprise services.
Core Feature On‑demand, token‑compressed MCP schema streaming with a CLI proxy.
Tech Stack Go (for low‑latency RPC), protobuf, Docker for sandboxing, OpenAI/Anthropic SDKs.
Difficulty Medium
Monetization Revenue‑ready: subscription tier for enterprise MCP hosting + free tier for hobbyists.

Notes

  • HN users complain: “Reading on GH issue with MCP burns 54k tokens just to load the spec.” (recursivedoubts)
  • The wrapper solves the token‑cost pain while keeping the safety of MCP’s auth flow.
  • Discussion potential: compare token savings vs. raw CLI usage.

Secure Agent Sandbox with MCP/CLI Hybrid

Summary

  • A container‑based sandbox that lets LLM agents run CLI commands while enforcing fine‑grained permissions via MCP‑style policy definitions.
  • Integrates MCP for authentication, logging, and audit trails, but keeps the agent’s execution environment isolated from the host.

Details

Key Value
Target Audience Enterprises deploying LLM agents on internal networks.
Core Feature Policy‑driven CLI sandbox + MCP gateway for auth and telemetry.
Tech Stack gVisor, runc, Kubernetes, Rust for policy engine, MCP spec parser.
Difficulty High
Monetization Revenue‑ready: SaaS with per‑agent licensing.

Notes

  • “The CLI tool that the model is running may need to access the environment or a credentials file, and what’s to stop the model from accessing those credentials directly?” (wolttam)
  • “MCP solves a very specific problem: how do you ship a LLM’s tool/function so that it is callable by an LLM in an inter‑process manner.” (crazylogger)
  • This product addresses the security sandboxing frustration while keeping the convenience of CLI.

Dynamic Tool Discovery Service

Summary

  • A lightweight service that provides LLMs with only the tool definitions they need, fetched on demand via RAG or on‑the‑fly parsing of --help output.
  • Reduces context token waste and speeds up agent startup by avoiding full MCP spec loading.

Details

Key Value
Target Audience Chat‑based LLM users (ChatGPT, Claude) who need quick access to enterprise tools.
Core Feature On‑demand tool schema retrieval, caching, and token‑efficient serialization.
Tech Stack Python, FastAPI, ElasticSearch for RAG, OpenAI embeddings.
Difficulty Medium
Monetization Hobby (open‑source) with optional paid API key for high‑volume usage.

Notes

  • “MCP is expensive and doesn’t make up for better instructions using lighter weight tools.” (steve_adams_86)
  • Users want “a way to discover tools without pulling in the entire spec.” (recursivedoubts)
  • The service can be integrated into existing agent frameworks as a plug‑in.

Unified CLI+Skill Manager

Summary

  • Automatically generates skill documentation from any CLI’s --help output and exposes it as MCP‑compatible tool definitions.
  • Provides a single interface for agents to call either the native CLI or the generated MCP skill, with token‑efficient JSON output.

Details

Key Value
Target Audience Developers building hybrid agents that need both CLI and MCP support.
Core Feature CLI‑to‑MCP conversion, skill auto‑generation, output formatting (JSON/markdown).
Tech Stack Node.js, Docker, OpenAI API, Markdown parser, JSON schema generator.
Difficulty Medium
Monetization Hobby (CLI tool) with optional cloud sync for teams.

Notes

  • “The CLI tool that the model is running may need to access the environment or a credentials file…” (wolttam) – this manager keeps the CLI hidden behind a safe MCP layer.
  • “MCP is a black box API – you don’t have to install anything, provision any resources, etc.” (wenc) – the manager bridges that gap for non‑technical users.
  • Encourages discussion on how to best combine the strengths of both paradigms.

Read Later