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

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 serversmcp-audit– see which tools you actually use versus which waste tokensmcp-optimize– generate a project-local configuration with only what you needmcp-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-optimizerThe plugin is available on GitHub at https://github.com/choam2426/mcp-optimizer.
📖 Read the full source: r/ClaudeAI
👀 See Also

Building a Geological Clock with Claude Code: Single HTML + Three.js
A product designer built eona.earth, a geological clock that maps Earth's 4.5 billion years onto 12 hours, using Claude Code, Three.js, and custom WebGL shaders — all as a single HTML file with no build step.

Murmur: An Open-Source Cron Daemon for Automating Claude Code Sessions
Murmur is a cron daemon that schedules and automates Claude code sessions using a HEARTBEAT.md file for configuration.

ShareMyClaudeMD: Tool Converts Claude-Generated Markdown Files to Shareable Rendered Pages
A developer built sharemyclaudemd.com, a free tool that converts any Markdown file into a live, rendered page with a shareable URL and QR code. The tool addresses the friction of sharing Claude-generated Markdown files, which often requires recipients to open them in a specific editor or push to GitHub just for a rendered view.

AgentMind: A Claude Code Plugin That Learns and Applies Your Coding Preferences
AgentMind is a Claude Code plugin that observes your coding patterns, learns preferences like tool choices and style rules, and automatically injects that context into future sessions. It uses a six-step core loop and confidence scoring to determine when to apply learned preferences.