Project ideas from Hacker News discussions.

Apideck CLI – An AI-agent interface with much lower context consumption than MCP

📝 Discussion Summary (Click to expand)

Three dominant themes in the discussion

Theme Supporting quotation
1️⃣ MCP’s token overhead is prohibitive “We built a unified API … tool definitions alone burned 50,000+ tokens before the agent touched a single user message.” – gertjandewilde
2️⃣ CLI + progressive discovery is leaner and easier to adopt “I think that responding in JSON was always a mistake in the spec; it should have been free‑form text (which could then be JSON if required).” – zamalek
3️⃣ Security and permission control drive the MCP vs CLI debate Giving a CLI unrestricted box access vs a hosted MCP server with scoped permissions is a completely different risk profile.” – kayig

These points capture the most‑frequently voiced concerns: the heavy context cost of MCP, the token‑efficient simplicity of CLI‑based tool discovery, and theEnterprise‑level security considerations that differentiate the two approaches.


🚀 Project Ideas

ProgressiveDiscovery CLI Builder

Summary

  • A developer‑focused CLI generator that creates token‑efficient, step‑by‑step discovery tools for any service, eliminating the 50k+ token MCP manifest problem.
  • Value: lets agents learn commands via --help or --jelp output, cutting context overhead while preserving security boundaries.

Details

Key Value
Target Audience Solo developers, small‑team agents, hobbyist AI tool builders
Core Feature Generates progressive‑disclosure CLIs that expose sub‑commands via incremental help output; optional JSON‐compatible --jelp flag for machine parsing
Tech Stack Rust (CLI core), Python (script templates), JSON‑Schema introspection, SQLite for caching help outputs
Difficulty Medium
Monetization Hobby

Notes

  • HN commenters repeatedly noted that “JSON is far more token‑efficient than prose” and that “progressive discovery is cheaper than dumping the whole schema,” exactly the pain addressed here.
  • Could spark discussion on caching strategies for repeatedly used tools and on integrating with existing MCP ecosystems.

Secure CLI Wrapper Marketplace

Summary

  • A hosted marketplace of pre‑built, sandboxed CLI wrappers that emulate MCP security (scoped secrets, audit trails) while keeping context usage low.
  • Value: provides enterprises the safety of MCP servers without the token‑bloat, letting solo users adopt enterprise‑grade security instantly.

Details

Key Value
Target Audience Small startups, solo founders, regulated‑industry developers needing credential isolation
Core Feature Docker‑based isolated containers exposing --help‑driven CLIs; each wrapper signs its manifest and enforces role‑based access via environment variables; integrates with OAuth2 or API keys
Tech Stack Go (container runner), OpenAPI spec for command contracts, Redis for policy storage, Docker + gVisor for sandboxing
Difficulty High
Monetization Revenue-ready: SaaS subscription $19/mo per active wrapper, volume discounts for >10 wrappers

Notes

  • The discussion highlighted “the security posture argument is underrated” and “CLI unrestricted box access vs scoped MCP permissions”; this product directly answers that need.
  • Could generate debate on how to enforce deterministic policy checks in CLI wrappers versus opaque MCP declarations.

Token‑Caching MCP Proxy Service#Summary

  • A lightweight proxy service that caches MCP tool manifests and rewrites incoming MCP calls to a token‑efficient CLI mode on‑the‑fly.
  • Value: reduces per‑request schema cost dramatically for high‑frequency agents while preserving full MCP functionality.

Details

Key Value
Target Audience AI platform engineers, SaaS agents, large‑scale automation pipelines that call many tools repeatedly
Core Feature API endpoint /proxy/{mcp_id} that first checks Redis cache for schema; if cached, returns minimal CLI command list; otherwise fetches full MCP schema, caches it, and rewrites tool calls to --cli <cmd> --args … for cheaper token usage
Tech Stack Node.js (API layer), Postgres (persistent store), Redis (TTL caching), Docker Compose, OpenTelemetry for metrics
Difficulty Medium
Monetization Revenue-ready: Pay‑as‑you‑go $0.001 per 1k cached schema lookups, with a free tier up to 100k lookups/month

Notes- Commenters asked “How many times have we implemented Hello World?” and lamented token waste; this service directly tackles that by reusing cached schemas across many agents.

  • Sparks conversation on caching policies, eviction strategies, and the trade‑off between cache hit rates and context window limits.

Read Later