mcp-optimizer reduces token waste from idle MCP servers in Claude Code

✍️ OpenClawRadar📅 Published: March 19, 2026🔗 Source
mcp-optimizer reduces token waste from idle MCP servers in Claude Code
Ad

mcp-optimizer is a plugin that addresses token waste in Claude Code when using Model Context Protocol (MCP) servers. The problem: every connected MCP server loads its full tool schema into every conversation, even if tools are never used. With three servers, this can waste approximately 6,500+ tokens per session.

Key features

  • mcp-doctor – health check your MCP servers
  • mcp-audit – see which tools you actually use versus which waste tokens
  • mcp-optimize – generate a project-local configuration with only what you need
  • mcp-to-skills – convert MCP tools into on-demand local Skills (zero idle cost)

The core concept: Skills only load when invoked, while MCP schemas load every time. This optimization reduces unnecessary token consumption.

Installation

Install via the plugin marketplace:

/plugin marketplace add choam2426/mcp-optimizer
/plugin install mcp-optimizer

The plugin is available on GitHub at https://github.com/choam2426/mcp-optimizer.

📖 Read the full source: r/ClaudeAI

Ad

👀 See Also

Claude Code's Illusion of Finished Work: Why Reviewing the Agent's Path Matters More Than the Diff
Tools

Claude Code's Illusion of Finished Work: Why Reviewing the Agent's Path Matters More Than the Diff

Claude Code can produce a clean diff, passing tests, and a good summary—yet still miss real behavior, security concerns, or architecture constraints. The author argues that reviewing the chain of actions (plans, files read, commands run, test output) is now essential, not just the final diff.

OpenClawRadar
Open Source GTM Plugin for Claude Code with 166 Marketing Skills and Bootstrap Command
Tools

Open Source GTM Plugin for Claude Code with 166 Marketing Skills and Bootstrap Command

A developer has released an open source Go-To-Market plugin for Claude Code that provides 166 specialized marketing skills across SEO, content, outbound, sales, growth, analytics, strategy, ads, social, CRM, and AI search. The plugin includes a /bootstrap command that interviews users about their brand to generate personalized context files.

OpenClawRadar
Running OpenClaw and Codex CLI Natively on Android via AnyClaw APK
Tools

Running OpenClaw and Codex CLI Natively on Android via AnyClaw APK

A developer has packaged OpenClaw and Codex CLI into an Android APK called AnyClaw, enabling the gateway and Control UI to run locally on ARM64 Android 7.0+ devices without root. The project required building dependencies from source and patching multiple components to handle Android-specific constraints.

OpenClawRadar
Hypura: Storage-tier-aware LLM inference scheduler for Apple Silicon
Tools

Hypura: Storage-tier-aware LLM inference scheduler for Apple Silicon

Hypura is a Rust-based inference scheduler that places model tensors across GPU, RAM, and NVMe tiers to run models exceeding physical memory on Apple Silicon Macs. It enables running a 31GB Mixtral 8x7B on a 32GB Mac Mini at 2.2 tok/s and a 40GB Llama 70B at 0.3 tok/s where vanilla llama.cpp crashes.

OpenClawRadar