Convert MCP servers into agent-first CLIs. Kill the token tax.
An MCP with 51 tools costs ~9K tokens of context — permanently. That's context space stolen from conversation, code, and reasoning. And most agents use 5 of those 51 tools.
Extract the API logic into a CLI. Ship with a skill file. Remove the MCP.
Before: 51 MCP tools → ~9,000 tokens/session
After: 5 CLI commands + skill → ~200 tokens/session
/cli-forge audit # Analyze an MCP: tool count, token cost, which tools are actually used
/cli-forge convert # Generate CLI source from MCP API client
/cli-forge skill # Generate the agent skill file--jsonon every command- Non-interactive (no prompts, no wizards)
- Deterministic (same input → same output)
- Fast failure with actionable errors
--dry-runfor destructive ops--helpis the schema
MIT