token-optimizer
Context-window optimization tools (caching, compression, smart file tooling) for the Gemini CLI.
Open source Open in the app JSON README (API)
About
Context-window optimization tools (caching, compression, smart file tooling) for the Gemini CLI.
Details
- Kind
- Plugins
- Topic
- AI, RAG & memory
- Publisher
- ooples
- Origin
- gemini
- Category
- ferramentas
- Version
- 6.0.2
- Stars
- 508
- Forks
- 61
- Open pull requests
- 2
- Last push
- 2026-09-04T15:04:53Z
- Repository state
- ativo
- Language
- JavaScript
- License
- MIT
- Added
- 2026-08-30 14:13:39
- Updated
- 2026-08-30 14:13:39
- Origin id
ooples/token-optimizer-mcp
README
[](https://mcptoplist.com/server/io.github.ooples%2Ftoken-optimizer-mcp)
<h1 align="center">Token Optimizer MCP</h1>
<p align="center">
<strong>Spend less context, keep the conclusions, and audit every claim across 16 coding clients.</strong>
</p>
<p align="center">
<a href="https://www.npmjs.com/package/@ooples/token-optimizer-mcp"><img src="https://img.shields.io/npm/v/%40ooples%2Ftoken-optimizer-mcp?logo=npm" alt="npm version"></a>
<a href="https://github.com/ooples/token-optimizer-mcp/actions/workflows/ci.yml"><img src="https://github.com/ooples/token-optimizer-mcp/actions/workflows/ci.yml/badge.svg?branch=master" alt="CI"></a>
<a href="./LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="MIT license"></a>
<a href="https://nodejs.org/"><img src="https://img.shields.io/badge/node-%3E%3D22-339933?logo=node.js&logoColor=white" alt="Node.js 22+"></a>
</p>
<p align="center">
<img src="https://img.shields.io/badge/enforced-by%20default-2ea043" alt="Enforced by default">
<img src="https://img.shields.io/badge/clients-16-8b5cf6" alt="16 clients">
<img src="https://img.shields.io/badge/direct%20savings-before%20%2F%20actual%20return-3b82f6" alt="Direct savings measured before and after">
<img src="https://img.shields.io/badge/telemetry-none-2ea043" alt="No telemetry">
<img src="https://img.shields.io/badge/commercial%20use-MIT%2C%20allowed-0d9488" alt="MIT, commercial use allowed">
</p>
<p align="center">
<img alt="Live Token Optimizer dashboard separating verified net MCP transport savings, excluded reports, per-agent attribution, and graph evidence" src="./docs/media/live/overview-live.png" width="1000">
</p>
<p align="center"><em>One local ledger for optimizer tools, live-graph substitutions, every agent, and the graph's own cost.</em></p>
---
## The 30-second version
Your agent burns most of its context on work it already did: re-reading files
that have not changed, dumping a whole file to see three lines, running
unbounded searches, and re-deriving conclusions it reached last session and then
forgot.
Token Optimizer attacks that on four fronts.
**1. It makes the expensive call impossible.** Install the plugin and a built-in
`Read` of a 200 KB file is **denied**, with the refusal naming the cached,
diffed replacement. Same for `Grep`, `Glob`, `Edit`, `Write`, and `cat` /
`head` / `grep -r` through the shell. **Re-reading a file you already read this
session returns only a diff** — usually the single biggest win, and one that
size-based rules structurally cannot catch. There is no setting to turn on.
**2. It remembers what your agent worked out.** A per-project knowledge graph
accumulates findings, decisions and dead ends as a side effect of working, then
feeds them back the moment the agent touches the relevant file. A finding costs
~150 tokens to carry. Re-deriving it costs 5k–50k.
**3. It measures itself, in public, and tells you when it is losing.** A
materialized before/actual-return measurement for MCP progressive disclosure,
with later expansions debited from the same net. Modeled graph substitutions
and the randomized control arm for downstream graph effects remain separate.
Every number is measured, visibly collecting, excluded, or absent.
**4. It attributes the traffic.** Returned context, optional cost equivalents,
and net transport avoided are grouped by operation and MCP handshake identity. Codex, Claude Code,
Gemini, and any other connected client get separate rows. Old records without
identity remain explicitly unattributed instead of being assigned to whichever
agent happens to be open now.
No account, no telemetry, no hosted service. MIT, so it is usable at work.
### What the dashboard proves on a real machine
The screenshots in this README come from the shipped server reading persisted
local data, not a design mockup. In the capture above it reports:
- **43,491 net verified MCP transport tokens avoided** in the current live
proof: 54,037 gross reduction minus a deliberate 10,546-token expansion;
- **486,074,740 historical/tool-reported tokens quarantined**, dominated by
repository scan volume that never entered model context;
- a live Codex / Claude Code / Gemini stdio smoke against AiDotNet, with each
client attributed independently;
- **2,648 graph nodes, 6,527 edges, and 58 findings** across 11 local projects;
- **more than 1,000 hook runs with zero failures and zero timeouts** across six
active CLI clients in the selected rolling 24-hour window;
- **6,332 tokens of modeled graph-substitution potential**, excluded from the
verified headline while the causal graph-reuse study remains `Collecting`.
The dashboard now reads native CLI usage receipts and prices uncached input,
cache reads, cache writes, and output with the exact captured provider, model,
route, request-time tier, and versioned official source. Ambiguous model ids stay
**Not priced** instead of receiving a blended guess. API/list-price equivalents
are kept separate from provider-reported charges and are never labeled as a
subscription invoice. See the [token accounting contract](./docs/TOKEN_ACCOUNTING.md).
## Quick start
**Claude Code** — install the plugin, not the bare MCP server. The plugin is
what enforces; adding the server alone just gives the model tools it can ignore.
```text
/plugin marketplace add ooples/token-optimizer-mcp
/plugin install token-optimizer@token-optimizer
/reload-plugins
```
That is the entire installation. [All sixteen clients →](#installation)
Then, whenever you want to know what to do next:
```text
token_audit
```
One ranked queue: what is costing the most per session, with an optional monthly
cost equivalent only after you configure your own effective rate. Each line
names how to fix it. Not a dashboard, not six reports — a queue.
---
## The knowledge graph — the part nothing else has
Every agent session ends the same way: the reasoning evaporates. The next
session re-derives it, at full price, forever.
This builds a **living per-project graph** — nodes for files, symbols, tasks and
findings; edges for `derived_from`, `contains`, `supersedes`, `contradicts`,
`related` — and it fills itself in from real work. No ingestion job, no
embedding model, no rebuild step, no query to formulate.
```
you touch src/auth.ts
│
├─ verify() compares exp against the LOCAL clock (finding, 0.9)
├─ per-host retry budgets; global was rejected — deadlock (decision)
├─ ! the skew fix was reverted once already (dead end)
└─ [git] 47 changes in 90d, last three: "fix token expiry",
"revert skew fix", "fix token expiry again"
```
None of that is in your repository. It exists only because an agent once burned
tokens finding it out — and every other tool throws it away at the end of the
session.
**What a default install actually produces.** The structural graph — files,
symbols, tasks, and the edges between them — is captured from ordinary tool
traffic with no configuration at all. Findings are produced two ways. At session
end, `derive` reads evidence already on disk (command outcomes and exit codes,
red-to-green transitions, corrections, re-read churn) and writes findings from
it: no model call, no credential, nothing sent anywhere. And the active model
records durable conclusions itself through `wiki_write`.
The **model-based semantic harvest** is the third path, and the only one that
needs something you do not already have. It is **not opt-in** —
`TOKEN_OPTIMIZER_HARVEST=0` turns it *off* — but its real gate is a credential:
with none it reports `off:no-key`, which is the state on CI, corporate machines,
and subscription-only logins. Point `TOKEN_OPTIMIZER_HARVEST_ENDPOINT` at a
local model and it runs **free and private, with nothing leaving the machine**.
`npx token-optimizer-doctor` states which of these is live.
### Why this is not RAG
| Classic RAG | This |
| -------------------------------------------------------------- | ----------------------------------------------------------------------------- |
| Retrieves **evidence**; the model re-derives meaning each time | Retrieves **verdicts** — the reasoning already happened |
| Index built by a **batch ingestion job** | Accretes from **real agent traffic** — coverage follows attention |
| **Similarity** search | **Traversal** — this symbol _and its callers_ |
| Model must **formulate a query** | Fires when the model **reaches for a file** |
| Staleness **invisible**; serves rotted chunks confidently | Staleness **computed** from content hashes, served with the invalidating diff |
| Returns only what is **in the documents** | Returns **dead ends**, which exist nowhere in your source tree |
Traversal plus lexical search: deterministic, instant, explainable, and it works
offline.
### The zero-turn refusal
A plain deny costs a full turn: the model calls `Read`, is refused, re-plans,
calls `smart_read`. But at refusal time we already hold the file _and_ the
snapshot the graph stored — so the refusal **carries the answer inside it**.
Nothing to re-plan, no second call. Turn cost drops from one to zero.
And when the graph already holds the verdict a tool output would support, the
output never enters context at all. Not compressed. Absent.
---
## The dashboard
```bash
npm install
npm run build
npm run dashboard # http://localhost:3100
```
<p align="center">
<img alt="Per-agent token accounting with historical rows left unattributed and live Codex, Claude Code, and Gemini rows measured separately" src="./docs/media/live/agent-accounting-live.png" width="1000">
</p>
The overview answers the questions a token optimizer should answer first:
1. **How much MCP context did it avoid?** The headline is gross materialized
payload reduction minus every later linked expansion. Graph estimates are
intentionally separate.
2. **How much context still reached the agents?** Every successful current MCP
result records its actual returned text, even when no valid before-state
exists. That row is context-accounted but savings-unmeasured.
3. **Which agent and action spent it?** The client ledger and action table show
operations, returned context, optional cost equivalent, and net tokens
avoided. Lifecycle-only clients say `Not measured`; no zero is invented.
4. **Did remembering cost more than it saved?** Delivery and semantic-harvest
tokens are charged to the graph. A causal benefit is added only after the
treated/holdout evidence gate passes.
### Walkthrough: get useful data, not an empty dashboard
1. Install the MCP server and the native adapter for your CLI. The MCP handshake
provides per-client accounting; native lifecycle hooks provide automatic
routing, capture, health, and delivery where the client protocol permits it.
2. Use `smart_read`, `smart_grep`, `smart_glob`, `smart_edit`, or any other MCP
operation normally. Every successful result records returned context; tools
with a comparable materialized before-state also record a gross reduction;
later `expand` calls debit that reduction.
3. Let the active model record durable conclusions with `wiki_write`. Before a
new agent re-derives work, call `wiki_read` for the project or the files it is
about to touch. Native clients can also deliver matching knowledge
automatically.
Use `wiki_query` to read the graph directly — one finding by key, a ranked
BM25 search over claims, a node with its neighbours, or the graph's own audit
— which is how a subagent that never sees the SessionStart briefing reaches
what previous sessions established.
4. Open `http://localhost:3100`. Use **Overview** for combined accounting and
**What it knows** for capture health, graph exploration, audits, and causal
evidence.
5. To register existing local repositories without reading their source, run
`npm run projects:discover -- /absolute/path/to/repos`. This makes coverage
gaps explicit; it does not fabricate findings.
For maintainers, this live smoke exercises the shipped stdio transport and
creates separately attributed rows without seeding the analytics database:
```bash
npm run dashboard:attribution-smoke -- /absolute/path/to/project /absolute/path/to/large-file
npm run dashboard:verify-live -- http://localhost:3100
```
<p align="center">
<img alt="Structured cross-client hook and MCP health cards from live local data" src="./docs/media/live/capture-health-live.png" width="1000">
</p>
The health panel is deliberately operational rather than a raw text dump. Each
client has activity, runtime failures/timeouts, policy outcomes, and observed
surface coverage. Diagnostics keep no prompts, commands, paths, or tool output.
<p align="center">
<img alt="Direct graph savings, remembering cost, holdouts, and an honest collecting causal study" src="./docs/media/live/graph-balance-live.png" width="1000">
</p>
Modeled substitution potential and causal graph effects are different claims.
The first is a full-file counterfactual and is never promoted to the verified
MCP headline. The second asks whether delivered knowledge prevented later reads;
it uses a control arm and remains `Collecting` until there are at least 20
treated file touches and 5 holdouts with valid downstream joins.
<p align="center">
<img alt="Interactive 3D knowledge graph spanning eleven local projects" src="./docs/media/live/graph-explorer-live.png" width="1000">
</p>
Drag to orbit, scroll to zoom, click a node for provenance, or switch to the
bounded one-hop focus view. The default **All known projects** scope pools local
graphs through opaque project IDs; filesystem paths never reach the browser.
**Audit tab.** Contradictions, stale findings, and low-confidence claims remain
reviewable instead of silently becoming model truth.
**Evidence console.** Client/model/task cohorts, matched effects with 95%
intervals, live outcome joins, harm feedback, and capability tiers for all 16
clients. Release and superiority claims fail closed while evidence is missing.
**One-click Markdown export.** The accumulated graph becomes documentation you
can inspect, edit, and commit.
Server-side by design: the browser asks for a neighbourhood, a search result or
a page. A mature graph holds thousands of nodes, and shipping it wholesale would
make every page load a multi-megabyte download for a view that shows twenty
things.
The default **All known projects** scope combines captured graphs through an
opaque machine-local project registry; filesystem paths never reach the
browser. Lifecycle hooks register repositories as they are used. To backfill
existing local checkouts without reading their source files, run the bounded
discovery command against one or more explicit roots:
```bash
npm run projects:discover -- /absolute/path/to/repos /absolute/path/to/worktrees
```
Coverage distinguishes repositories with graph data from known repositories
whose capture has not started. The balance cards are backed by persisted events:
**Memory deliveries** counts graph context actually supplied to an agent,
**Kept back for comparison** counts randomized control touches, and **Cost of
remembering** combines delivered-context tokens with measured semantic-write
payload cost. **Reading avoided** stays `Collecting` or `Not measured` until at
least 20 treated file touches and 5 holdouts exist with a downstream join; the
dashboard does not manufacture a savings estimate from missing data.
See [the causal evidence protocol](docs/EVIDENCE_PROTOCOL.md), the
[cross-client capability contract](docs/CLIENT_SUPPORT.md), and the
[live evaluation suite](evals/README.md).
### Cross-client lifecycle diagnostics
Every native hook writes the same bounded JSONL lifecycle record, including
Claude Code's custom router and compaction paths. Records carry the client and
plugin versions, event, hashed session/turn correlation, latency, outcome,
input/output byte counts, and response key shape. They deliberately retain no
prompt, command, tool output, file content, or raw working-directory path. The
fields include OpenTelemetry log severity and resource semantics so the local
files can be collected without inventing a second schema.
```bash
npm run diagnostics # last 24 hours, summary-first JSON
npm run diagnostics -- --hours 72 --output hook-summary.json
npm run diagnostics -- --include-events --limit 100 --output hook-report.json
```
Raw event rows are opt-in and capped at 1,000. The default report contains aggregate health and
at most twenty recent failures/timeouts, keeping routine troubleshooting output small enough for
CLI and model context windows.
The dashboard's **Capture health** panel shows runs, failures, timeouts and
p50/p95 latency by client. Logs rotate at 5 MiB, retain at most 40 files for 14
days, and live under `.token-optimizer/logs` when a state directory is set (or
`~/.token-optimizer/logs` otherwise). `TOKEN_OPTIMIZER_LOG_DIR`,
`TOKEN_OPTIMIZER_LOG_MAX_BYTES`, `TOKEN_OPTIMIZER_LOG_MAX_FILES`, and
`TOKEN_OPTIMIZER_LOG_RETENTION_DAYS` override those operational defaults.
---
## What it does that other optimizers do not
### Compaction is consolidation, not loss
Everyone else checkpoints and restores what you _had_ — which spends the
scarcest budget in the session replaying context you already paid for.
Selection here is **derived**, not a category list: `cost-to-rederive ×
irrecoverability × reuse-probability`, with dead ends and decisions on a floor,
because cheap-to-find is not the same as cheap-to-find-_again_. Restoration then
adapts to the situation — mid-problem, cold resume, or in-flow — within a
measured budget:
> **Where you were:** does clock skew explain the 401s?
> ruled out: token signing, clock drift on the client
> untested: NTP skew on the server
That is resuming a thought. A summary describes one.
### Progressive disclosure that knows what you asked
A large tool result becomes a preview chosen by the **session's actual
question**, after parsing the output's shape (test report, diff, stack trace,
log, JSON) — not the first 40 lines because they are first.
```
[selected against: "which shard fails?"]
--- failures ---
FAILED DBNetTests.BceOnRelu -- expected 0.0 got NaN
FAILED TftGradientFlow -- gradient did not reach the encoder
---- omitted: 1,760 lines of passing tests (expand 8bb6bd66) ----
```
Every cut is **named**, because a model reasoning over a silent truncation
cannot know it is missing anything. `expand` serves from a content-addressed
store — it never re-runs your test suite — and expanding both teaches the next
preview and promotes what you needed into the graph, so the second expansion
never happens.
### Prompt-cache economics, measured from your own transcript
Provider caches are billable and provider-specific; a cache hit is not a free
input token. For example, Anthropic publishes separate cache-read and
cache-write multipliers, while OpenAI and Gemini expose their own cached-input
usage and pricing rules. Token Optimizer reads native cache fields when the
client supplies them and keeps reads, writes, uncached input, and output
separate. It never applies one provider's cache multiplier to another client.
The attribution view then does the part a hit rate cannot:
```
! CLAUDE.md:2 has an embedded timestamp, invalidating everything after it
about 329,421 tokens re-written per session
```
Attributed to a line, priced by what sits _behind_ it. Keep-warm is decided by
expected value from your observed gaps, per TTL tier — and when neither tier
pays, it says so.
### Model routing decided by outcomes, not by task size
Everyone guesses from task shape and never checks. This reads which model ran
each episode and what happened — retries, errors, turns — and prices **both**
mistakes: what an overpowered model wastes, and what an underpowered one costs
in retries. A tier that needs a retry in more than half its episodes is excluded
at any price, because four cheap turns that fail are not cheap.
### Waste detection that becomes a ratchet
A report is read once and forgotten. Here a detection produces a **durable,
measured, reversible fix** — a skip rule, a composite touch — plus a ~50-token
session-start briefing so the waste never starts. Detectors are a shipped floor
_plus_ patterns derived from your project's own history, each carrying what it
has actually saved:
```
generated/schema.d.ts: read in 9/9 sessions, never the source of a finding
3,400 tokens/session; cost equivalent not priced; apply: waste_audit action="apply"
```
Anything that touches **your** files is proposed as a diff and never applied.
### One audit across every project
`fleet_audit` ranks your whole machine by measured cost, and does something a
per-project scanner cannot: a fix proven in one project is offered to the others
containing the **same file contents**, carrying the evidence from where it was
measured. Matching is by content hash, never by filename.
It also runs the natural experiment nobody else can — enforcing clients versus
directive ones — and reports it whichever way it falls, with the confound
stated.
---
## Trust: we ship hooks that refuse your tool calls
That is a bigger ask than a normal dependency makes, so:
**Verify the release.** Published from CI with npm provenance — `npm audit
signatures` ties the artifact to the workflow run and the commit, without
trusting us. `CHECKSUMS.sha256` ships alongside for offline checking.
**If nothing seems to be happening, the lifecycle bundle is probably not
installed.** An MCP server process cannot modify the host that launched it, and
npm 11 gates lifecycle scripts behind `allow-scripts`. Install the native
plugin/hook bundle listed for your client below; adding only the MCP server gives
the model tools but no pre-execution veto. For a legacy global Claude Code
installation, recovery is one line:
```bash
npx token-optimizer-install # wire Claude Code hooks
npx token-optimizer-doctor # prove the Claude hooks work
```
**Check that it works — not that files exist.**
```bash
npx token-optimizer-doctor # or npm run doctor, from a clone
```
It feeds a synthetic payload to the _real_ hook binary and asserts a large read
is refused and a small one is not. A checklist would have passed on the exact
bug this project once shipped, where the plugin was connected, visible in
`/mcp`, and saving nothing. Every failure names its own fix.
**Every refusal carries its own off switch.** Enforcement that hides its disable
is coercive, and the person who needs it is mid-refusal, not reading a README:
```
auth.ts is 91 KB. Call smart_read instead.
(Not what you wanted? TOKEN_OPTIMIZER_MODE=off disables enforcement.)
```
**Removal is exact.** The installer records every file it wrote, with hashes.
Uninstall removes only what still matches; anything you edited since is left in
place and named. Your own hooks are never touched, and we never rewrite your
`settings.json` — we merge into it.
```bash
npm run uninstall-hooks # show the plan; changes nothing
npm run uninstall-hooks -- --apply # carry it out
```
---
## It separates direct savings from causal graph evidence
Every tool in this space reports "tokens saved" computed from its own
assumptions. That number cannot be wrong, because nothing checks it.
For optimizer results, this records the materialized before-state and the text
actually returned to the client, then subtracts any linked expansion responses.
Native graph-substitution counterfactuals stay labeled as modeled and outside
the main headline.
The graph's broader claim—whether delivered knowledge prevented later
re-reading—is causal, so it runs a **randomized holdout**. Delivery is silently
withheld on a slice of file touches, stratified by file, and the effect is the
difference in downstream reads between arms. That effect is not added to the
combined net until the experiment can support it, and the page will tell you
plainly:
> the graph is NOT yet paying for itself
A tool that can only ever report good news is not reporting. The same discipline
runs throughout: an unmeasurable saving renders as **unknown**, never as zero,
and never as `$0.00` — because "cannot tell yet" printed as "saved nothing" is a
silent false negative, and dollars get quoted to other people.
## It runs everywhere, and says which tier
The tier is a protocol guarantee, not a preference:
- **Lifecycle continuation:** Claude Code, Codex, GitHub Copilot CLI, Gemini CLI,
Qwen Code, and Cursor. Native routing/capture/delivery plus one active-model
completion reflection.
- **Native observation:** Cline, OpenCode, Kilo, and Windsurf. Native
routing/capture/delivery; the active model performs semantic writes.
- **MCP + rules:** Roo Code, Zed, Amp, Continue, Crush, and Droid. MCP-visible
activity and explicit graph tools, with no claim over hidden built-in calls.
The exact surfaces still differ. For example, a protocol that can replace a
large read before it reaches the model provides a stronger token guarantee than
one that can only observe it. The generated registry, adapters, dashboard, and
certification report all read the same capability source so those claims cannot
drift independently.
Every config shape is confirmed against that client's published documentation,
with the source URL recorded in its README.
## Everything here is verified, and you can run it
```bash
npm run verify:all
```
| Suite | Checks | What it proves |
| ---------------- | ------ | ----------------------------------------------------------------------------------------------------------------------- |
| `test` | 2,437 | Enforcement, staleness, injection, consolidation, disclosure, cache, routing, trust — driving the real hooks over stdin |
| `verify:clients` | 253 | Every client config, lifecycle manifest, and enforcement surface matches its documented schema |
| `verify:harvest` | 26 | Request shape, response parsing, and that **no secret from a tool result crosses the wire** |
| `verify:ui` | 22 | Real headless Chromium: layout, label collisions, legibility |
| `doctor` | 10 | The installed hooks actually refuse, and the server actually answers |
These are not decoration. They found six client configs that would have failed
**silently**, an installer that destroyed user hooks, a Windows path bug that
made enforcement blind to half its own refusals, and an uninstaller that printed
a plan and deleted nothing.
## Honest comparison
| | Token Optimizer | Typical alternatives |
| ---------------------------- | -------------------------------------------------------------------- | ---------------------------------------------------- |
| **License** | MIT — commercial use fine | Often noncommercial-only; check before using at work |
| Default behaviour | Refuses the wasteful call | Suggests a better tool |
| Re-read of an unchanged file | Returns a diff | Returns the file again |
| Savings figure | Direct before/return ledger; causal graph effect separately held out | Computed from the tool's own assumptions |
| Cross-session memory | Findings, decisions, dead ends | Usually none |
| Compaction | Consolidation, ranked by cost-to-rederive | Checkpoint and replay |
| Cache economics | Measured from the transcript, attributed to a line | Rarely addressed |
| Model routing | Measured from episode outcomes | Guessed from task size |
| Cross-project | Fixes transfer by content hash | Per-project only |
| Clients | 16 | 3–6 typical |
| Telemetry | None | Varies |
---
## Installation
Every client launches the same stdio server — `npx -y @ooples/token-optimizer-mcp@latest` —
but they differ in what they let a hook _do_, and that difference is the whole
product. A client with a pre-execution veto can have the wasteful call refused;
one without can only be told. Both are listed honestly below.
Ready-made configuration for all sixteen lives in
[`integrations/`](./integrations), generated from one source and validated by
`npm run verify:clients`. Full matrix: [`docs/CLIENT_SUPPORT.md`](./docs/CLIENT_SUPPORT.md).
Every MCP connection also receives capability-aware mandatory routing
instructions in its `initialize` response. That gives all clients a universal
always-on policy, but only the ten clients with native pre-tool surfaces can
hard-veto a wasteful built-in call; install their lifecycle bundle for actual
enforcement.
### Enforcing tier — the wasteful call is refused
These ten clients expose a pre-execution hook. Their packaged lifecycle bundle
defaults to enforcement and shares one capability-aware decision engine; set
`TOKEN_OPTIMIZER_MODE=advise` or `off` only when you deliberately want the
escape hatch.
| Client | Installable lifecycle surface |
| ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
| **Claude Code** | Native plugin: `/plugin marketplace add ooples/token-optimizer-mcp`, then `/plugin install token-optimizer@token-optimizer` |
| **Codex** | Native plugin in [`integrations/codex/plugin`](./integrations/codex/plugin), or standalone hooks in [`integrations/codex`](./integrations/codex) |
| **GitHub Copilot CLI** | Project hooks in [`integrations/copilot`](./integrations/copilot) |
| **Gemini CLI** | Gemini extension at the repository root, backed by [`integrations/gemini`](./integrations/gemini) |
| **Qwen Code** | Extension bundle in [`integrations/qwen`](./integrations/qwen) |
| **Cursor** | Project hooks and always-applied rule in [`integrations/cursor`](./integrations/cursor) |
| **Cline** | Project hooks and rule in [`integrations/cline`](./integrations/cline) |
| **OpenCode** | In-process plugin and hooks in [`integrations/opencode`](./integrations/opencode) |
| **Kilo** | In-process plugin and hooks in [`integrations/kilo`](./integrations/kilo) |
| **Windsurf** | Project hooks and rule in [`integrations/windsurf`](./integrations/windsurf) |
### Rules tier — mandatory routing where the host has no veto API
Roo Code, Zed, Amp, Continue, Crush, and Droid do not expose a packaged
pre-execution bridge that can safely veto built-in calls. Their generated,
always-on rules make optimized routing mandatory whenever the exact MCP schema
is visible, and fail open to a bounded native operation when it is not. The
integration directories contain both the MCP config and the rules file at the
paths documented by each host.
> **These paths are checked, not assumed.** Verifying them against each client's
> published docs found six configs that would have installed cleanly and never
> loaded — including Kilo, whose schema shares nothing with the `mcpServers`
> convention the other clients use. A convention is not a schema.
### Codex
#### 1. Add the MCP server or native plugin
For the best experience, install the Codex plugin. It bundles the MCP server, the token-optimization skill, session guidance, and a large-read hook:
```bash
codex plugin marketplace add ooples/token-optimizer-mcp
codex plugin add token-optimizer@token-optimizer
```
Review and trust the bundled hooks with `/hooks`, then start a new conversation. If you prefer an MCP-only installation, use:
```bash
codex mcp add token-optimizer -- npx -y @ooples/token-optimizer-mcp@latest
```
On Windows, if PowerShell blocks the `codex.ps1` shim, use the command launcher directly:
```powershell
codex.cmd mcp add token-optimizer -- npx -y @ooples/token-optimizer-mcp@latest
```
This writes the server to `~/.codex/config.toml`. Codex CLI, the Codex IDE extension, and the Codex app on the same host share that configuration.
#### 2. Verify the installation
```bash
codex mcp get token-optimizer
codex mcp list
```

Start a new Codex conversation after installation so the new tools are discovered. In an interactive CLI session, `/mcp` shows the tools available to the conversation.
#### 3. Add optimization guidance and hooks
The plugin supplies both automatically. For an MCP-only installation, add the guidance from [`integrations/AGENTS.md`](./integrations/AGENTS.md) to a project or global `AGENTS.md`. A ready-made standalone hook is also available under [`integrations/codex/hooks`](./integrations/codex/hooks); merge its `hooks.json` into `~/.codex/hooks.json`, copy the script to `~/.codex/hooks/`, and review it once with `/hooks`.
The Codex hook injects guidance at `SessionStart` and blocks expensive native operations by default when the bundled MCP has an exact replacement. That includes a single unambiguous code-mode shell call such as `cat` or `Get-Content`; multi-operation orchestration remains advisory so unrelated work is not discarded. A second attempt at the same target passes through if the MCP is unavailable. Set `TOKEN_OPTIMIZER_MODE=advise` for guidance without vetoes or `TOKEN_OPTIMIZER_MODE=off` to disable the hooks. The `AGENTS.md`/skill guidance remains important.
If you prefer a smaller instruction block:
```markdown
## Token optimization
Use the token-optimizer MCP for large or repeated reads:
- `smart_read` for files over roughly 400 lines and for files already read once.
- `smart_glob`/`smart_grep` for large search results.
- `optimize_text` to store bulky text outside the model context.
- `get_optimization_report` when the user asks for token or compression stats.
Use normal tools for small, one-off operations.
```
See the current [Codex hooks documentation](https://learn.chatgpt.com/docs/hooks.md) for hook trust, matching, and tool-coverage details.
#### Equivalent manual Codex configuration
If you prefer to edit `~/.codex/config.toml` yourself:
```toml
[mcp_servers.token-optimizer]
command = "npx"
args = ["-y", "@ooples/token-optimizer-mcp@latest"]
# Optional: keep the cache in a custom location.
# env = { TOKEN_OPTIMIZER_CACHE_DIR = "/absolute/path/to/cache" }
```
### Claude Code
**Install the plugin, not the bare MCP server.** The plugin is the only path that
optimizes by default; adding the MCP server alone gives the model a set of tools
it is free to never call.
```text
/plugin marketplace add ooples/token-optimizer-mcp
/plugin install token-optimizer@token-optimizer
/reload-plugins
```
That is the whole installation. There is nothing to configure and no flag to
turn on.
#### What you get immediately
From the first message of the next session, expensive built-in calls are
**refused and redirected** to the optimized equivalent:
| You (or the model) do this | What happens |
| ---------------------------------------------- | ---------------------------------------------------- |
| `Read` a file over ~25 KB | Denied → `smart_read` (cached) |
| `Read` **any** file already read this session | Denied → `smart_read` (returns only the diff) |
| `Grep` file contents / `Glob` for files | Denied → `smart_grep` / `smart_glob` |
| `Edit` a file over ~25 KB | Denied → `smart_edit` (returns a diff, not the file) |
| `cat`/`head`/`tail`/`Get-Content` a large file | Denied → `smart_read` |
| `grep -r` / `rg` across the tree | Denied → `smart_grep` |
| Context fills and compaction starts | `optimize_session` runs first |
The re-read case is usually the largest single win and the one most often
missed: a 5 KB config read fifteen times across a session costs far more than
one 200 KB file read once. Size-based rules never catch it.
#### It cannot get you stuck
Three properties, all tested:
- **Fail-open.** Any error in the optimizer — bad payload, unreadable file,
unexpected exception — allows the original call through, exactly as if the
plugin were not installed.
- **Loop-breaking.** A given target is refused **once**. Come back to it and it
is allowed. So if the MCP server is missing or misconfigured, the cost is one
wasted turn per file, self-healing, with no intervention.
- **Cheap calls are left alone.** Small files, paged reads, `git log | head`,
and binary paths are never touched.
#### Turning it down
One variable, no reinstall:
```bash
TOKEN_OPTIMIZER_MODE=advise # nudge instead of refuse (the pre-5.2 behaviour)
TOKEN_OPTIMIZER_MODE=off # disable the hooks entirely
TOKEN_OPTIMIZER_LARGE_READ_BYTES=51200 # raise the "large file" threshold
```
#### MCP server only (not recommended)
If you want the tools without the enforcement:
```bash
claude mcp add --transport stdio --scope user token-optimizer -- \
npx -y @ooples/token-optimizer-mcp@latest
```
Verify with `claude mcp get token-optimizer`, or `/mcp` inside Claude Code. Then
add the recommendations from [`integrations/AGENTS.md`](./integrations/AGENTS.md)
to your `CLAUDE.md` — but be aware that guidance in a context file is advisory,
and models routinely read past it.
The standalone global installer can also configure the Claude Code hooks and supported desktop clients:
```bash
npm install -g @ooples/token-optimizer-mcp@latest
```
On Windows, a restrictive PowerShell policy may need this user-scoped adjustment first:
```powershell
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
npm install -g @ooples/token-optimizer-mcp@latest
```
Interactive global installs run the hook installer; CI and local dependency installs skip it. If automatic setup is skipped, use `install-hooks.ps1` on Windows or `install-hooks.sh` on macOS/Linux. See the [Claude Code MCP guide](https://code.claude.com/docs/en/mcp) and this project's [hook installation guide](./docs/HOOKS-INSTALLATION.md).
### GitHub Copilot CLI
#### 1. Add the MCP server
On current Copilot CLI releases:
```bash
copilot mcp add token-optimizer -- npx -y @ooples/token-optimizer-mcp@latest
```
If your Copilot CLI does not expose `copilot mcp` yet, save this as `~/.copilot/mcp-config.json`:
```json
{
"mcpServers": {
"token-optimizer": {
"type": "local",
"command": "npx",
"args": ["-y", "@ooples/token-optimizer-mcp@latest"],
"tools": ["*"]
}
}
}
```
A ready-made copy is available at [`integrations/copilot/mcp-config.json`](./integrations/copilot/mcp-config.json).
#### 2. Verify the installation
```bash
copilot mcp get token-optimizer
copilot mcp list
```
Inside an interactive Copilot session, `/mcp show token-optimizer` displays the connection status and available tools.
#### 3. Add optimization guidance and hooks
Keep [`integrations/AGENTS.md`](./integrations/AGENTS.md) as the repository's `AGENTS.md`, or adapt the same guidance into `.github/copilot-instructions.md`.
For native lifecycle integration, copy the ready-made repository hooks into your project:
```bash
mkdir -p .github/hooks
cp integrations/copilot/.github/hooks/token-optimizer* .github/hooks/
```
```powershell
New-Item -ItemType Directory -Force .github/hooks | Out-Null
Copy-Item integrations/copilot/.github/hooks/token-optimizer* .github/hooks/
```
The hooks inject optimization guidance at `sessionStart` and deny a large built-in `view` by default so Copilot retries with `smart_read`. Partial reads and files below 25 KB pass through unchanged, and `TOKEN_OPTIMIZER_MODE=advise` restores non-blocking guidance. Repository hooks work without overwriting user-level files; global hooks can instead be placed in `~/.copilot/hooks/` with their script paths adjusted for that directory.
Restart Copilot CLI after changing hook files. See GitHub's official [MCP setup guide](https://docs.github.com/en/copilot/how-tos/copilot-cli/customize-copilot/add-mcp-servers) and [hooks reference](https://docs.github.com/en/copilot/reference/hooks-reference).
### Gemini CLI
#### 1. Add the MCP server
Add Token Optimizer directly at user scope:
```bash
gemini mcp add --scope user token-optimizer npx -y @ooples/token-optimizer-mcp@latest
```
Alternatively, install this repository as a Gemini extension so the MCP configuration and `GEMINI.md` guidance are packaged together:
```bash
gemini extensions install https://github.com/ooples/token-optimizer-mcp --auto-update
```
#### 2. Verify the installation
```bash
gemini mcp list
gemini extensions list
```
Run `/mcp` inside Gemini CLI to inspect the connection. Restart Gemini CLI after installing or updating the extension.
#### 3. Add optimization guidance and hooks
Direct MCP users should copy [`GEMINI.md`](./GEMINI.md) into the project or merge its rules into an existing `GEMINI.md`. Extension users receive that context file plus native hooks automatically.
The extension's `SessionStart` hook injects optimization guidance. Its `AfterTool` hook notices full-file `read_file` results over 25 KB and suggests `smart_read`. To make Gemini automatically replace those large results with a token-optimizer tail call, configure the extension setting **Automatic large-read routing** as `true`:
```bash
gemini extensions config token-optimizer
```
Automatic routing uses Gemini's native `tailToolCallRequest`: the `smart_read` result replaces the built-in read result before it reaches the model. Partial reads remain unchanged. Restart Gemini CLI after installing, updating, or reconfiguring the extension. See the official [Gemini MCP guide](https://geminicli.com/docs/tools/mcp-server/), [extension guide](https://geminicli.com/docs/extensions/reference/), and [hooks reference](https://geminicli.com/docs/hooks/reference/).
### OpenCode
#### 1. Add the MCP server
Create or update `opencode.json` in your project:
```json
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"token-optimizer": {
"type": "local",
"command": ["npx", "-y", "@ooples/token-optimizer-mcp@latest"],
"enabled": true
}
},
"instructions": ["./AGENTS.md"]
}
```
For a global installation, merge the same `mcp` entry into `~/.config/opencode/opencode.json`.
#### 2. Verify the installation
```bash
opencode mcp list
```
The output shows configured servers and their connection status.
#### 3. Add optimization guidance and the local plugin
Copy [`integrations/AGENTS.md`](./integrations/AGENTS.md) to the project as `AGENTS.md`; the `instructions` entry above loads it. Then copy the ready-made local plugin:
```bash
mkdir -p .opencode/plugins
cp integrations/opencode/.opencode/plugins/token-optimizer.js .opencode/plugins/
```
```powershell
New-Item -ItemType Directory -Force .opencode/plugins | Out-Null
Copy-Item integrations/opencode/.opencode/plugins/token-optimizer.js .opencode/plugins/
```
The plugin preserves Token Optimizer usage state in OpenCode's compaction prompt. Its `tool.execute.before` hook rejects full-file reads over 25 KB by default and steers the agent to `smart_read`; small and partial reads pass normally. Set `TOKEN_OPTIMIZER_MODE=advise` for non-blocking guidance. Restart OpenCode after adding the plugin. See the official [OpenCode MCP guide](https://opencode.ai/docs/mcp-servers/) and [plugin hook guide](https://opencode.ai/docs/plugins/).
### Generic MCP configuration
Any stdio-capable MCP client can launch Token Optimizer with:
```json
{
"mcpServers": {
"token-optimizer": {
"command": "npx",
"args": ["-y", "@ooples/token-optimizer-mcp@latest"]
}
}
}
```
Additional ready-made integration files are available for [Claude Desktop](./examples/claude_desktop_config.json), [Codex](./integrations/codex/config.toml), [Gemini CLI](./integrations/gemini/), [OpenCode](./integrations/opencode/), and [GitHub Copilot](./integrations/copilot/mcp-config.json).
## Use it
You normally use Token Optimizer by asking your agent in plain language:
```text
Use token-optimizer smart_read for the large server file, then use it again
after the edit so only the diff comes back.
```
```text
Cache this API response with optimize_text under the key customer-schema,
then retrieve it only if we need the full payload again.
```
```text
Show my token savings with get_optimization_report.
```
For clients that expose direct MCP tool calls, the core inputs are small JSON objects:
```json
{
"tool": "smart_read",
"arguments": {
"path": "/absolute/path/to/large-file.ts"
}
}
```
```json
{
"tool": "optimize_text",
"arguments": {
"text": "A large response, log, document, or generated artifact...",
"key": "stable-reference-key",
"quality": 11
}
}
```
```json
{
"tool": "get_optimization_report",
"arguments": {
"topN": 10
}
}
```
## Understand the compression stats
`optimize_text` returns measurements with every call. This example uses a deliberately repetitive payload to make every field easy to see; it is not a benchmark:
```json
{
"success": true,
"key": "customer-schema",
"originalTokens": 4180,
"compressedTokens": 72,
"tokensSaved": 4108,
"percentSaved": 99.55,
"cached": true,
"compressionUsed": true
}
```
`get_optimization_report` applies the same versioned measurement contract as
the dashboard and aggregates qualifying operations into:
- gross preview reduction, linked expansion debits, and net transport avoided;
- observed returned context and the net reduction percentage;
- verified operations tracked, with legacy and tool-reported claims excluded;
- breakdowns by action/tool, hook phase, and MCP server;
- optional date-range and session filters.
Two tools sound similar but serve different purposes:
| Tool | Use it for | Context-window effect |
| --------------- | ----------------------------------------------------------- | --------------------------------------------------------- |
| `optimize_text` | Store bulky text under a key and return a compact reference | Reduces text kept in the active context |
| `compress_text` | Produce Brotli/base64 data for storage or transport | May use **more** model tokens if pasted back into context |
If your goal is a smaller prompt, prefer `optimize_text`. Use `compress_text` only when you specifically need byte compression.
## What is included
| Capability | Representative tools | What gets smaller or faster |
| ----------------------- | --------------------------------------------------------------------------------------------------- | ---------------------------------------- |
| Context and compression | `optimize_text`, `get_cached`, `count_tokens`, `analyze_optimization`, `context_delta` | Large payloads and repeated context |
| File and Git operations | `smart_read`, `smart_write`, `smart_edit`, `smart_grep`, `smart_glob`, `smart_diff`, `smart_status` | File contents, search results, and diffs |
| Caching | `smart_cache`, `cache_warmup`, `cache_invalidation`, `cache_compression`, `predictive_cache` | Repeated computation and retrieval |
| APIs and databases | `smart_api_fetch`, `smart_sql`, `smart_graphql`, `smart_rest`, `smart_schema` | Responses, schemas, and query analysis |
| Build and system tasks | `smart_build`, `smart_test`, `smart_lint`, `smart_logs`, `smart_processes` | Build logs and diagnostic output |
| Intelligence | `smart-summarization`, `pattern-recognition`, `natural-language-query`, `recommendation-engine` | Analysis and summaries |
| Analytics | `get_optimization_report`, `get_action_analytics`, `get_hook_analytics`, `export_analytics` | Token-savings visibility |
See [`docs/TOOLS.md`](./docs/TOOLS.md) for detailed tool inputs and examples.
## Requirements and data
- Node.js 22 or newer
- npm 9 or newer
- An MCP client with stdio transport support
Default local data locations include:
- cache: `~/.token-optimizer-cache/`
- analytics: `~/.token-optimizer-mcp/analytics.db`
- sessions and configuration: `~/.token-optimizer/`
Set `TOKEN_OPTIMIZER_CACHE_DIR` to override the cache location.
## Verify it, check it, remove it
This installs hooks that **refuse your tool calls**. That is a bigger ask than a
normal dependency makes, so here is everything needed to check it and undo it.
**Verify the release is genuine.** The package is published from CI with npm
provenance, which signs an attestation binding the artifact to the workflow run
and the commit that built it:
```bash
npm audit signatures
```
That verifies without trusting us. A `CHECKSUMS.sha256` is attached to each
GitHub release for offline checking (`sha256sum -c CHECKSUMS.sha256`) — useful
for mirrors, but weaker: it shares a trust root with the thing it hashes.
**Check it actually works.** Not that the files are in place — that it _works_:
```bash
npm run doctor
```
This feeds a synthetic payload to the real hook binary and asserts a large read
is refused and a small one is not, that session-start emits the policy, that the
graph directory is writable, and that the MCP server starts and lists its tools.
Every failure names its own fix. There is also an `install_doctor` MCP tool.
**Turn enforcement off, instantly.** Every refusal says this, so you never have
to come back here to find it:
```bash
TOKEN_OPTIMIZER_MODE=off # no enforcement, no hooks
TOKEN_OPTIMIZER_MODE=advise # suggestions only, nothing is ever denied
```
**Remove it.** The installer records every file it wrote, with hashes, so
removal is exact rather than best-effort:
```bash
npm run uninstall-hooks # show the plan; changes nothing
npm run uninstall-hooks -- --apply # carry it out
```
It removes only files that still match what we wrote. Anything you have edited
since is **left in place and named**, because removing it would destroy your
work and removing it silently would be worse. Hooks you added yourself are not
in the manifest and are never touched. Config entries we added are listed for
you to remove — we do not rewrite your `settings.json`.
## Technical reference
The detailed operational material below is intentionally retained for users who want to understand the complete tool surface, hooks pipeline, performance controls, analytics, and troubleshooting behavior.
The proposed category-level successor architecture, its 18 required
workstreams, and the evidence gates for claiming a universal cognitive runtime
are documented in
[`docs/UNIVERSAL_COGNITIVE_RUNTIME_PROGRAM.md`](docs/UNIVERSAL_COGNITIVE_RUNTIME_PROGRAM.md).
### Complete Tool Reference (74 Total)
#### Core Caching & Optimization (8 tools)
<details>
<summary>Click to expand</summary>
- **optimize_text** - Compress and cache text (primary tool for token reduction)
- **get_cached** - Retrieve previously cached text
- **compress_text** - Compress text using Brotli
- **decompress_text** - Decompress Brotli-compressed text
- **count_tokens** - Count tokens using tiktoken (GPT-4 tokenizer)
- **analyze_optimization** - Analyze text and get optimization recommendations
- **get_cache_stats** - View cache hit rates and compression ratios
- **clear_cache** - Clear all cached data
**Usage Example**:
```typescript
// Cache large content to remove it from context window
optimize_text({
text: 'Large API response or file content...',
key: 'api-response-key',
quality: 11,
});
// Result: 60-90% token reduction
```
</details>
#### Smart File Operations (10 tools)
<details>
<summary>Click to expand</summary>
Optimized replacements for standard file tools with intelligent caching and diff-based updates:
- **smart_read** - Read files with 80% token reduction through caching and diffs
- **smart_write** - Write files with verification and change tracking
- **smart_edit** - Line-based file editing with diff-only output (90% reduction)
- **smart_grep** - Search file contents with match-only output (80% reduction)
- **smart_glob** - File pattern matching with path-only results (75% reduction)
- **smart_diff** - Git diffs with diff-only output (85% reduction)
- **smart_branch** - Git branch listing with structured JSON (60% reduction)
- **smart_log** - Git commit history with smart filtering (75% reduction)
- **smart_merge** - Git merge management with conflict analysis (80% reduction)
- **smart_status** - Git status with status-only output (70% reduction)
**Usage Example**:
```typescript
// Read a file with automatic caching
smart_read({ path: '/path/to/file.ts' });
// First read: full content
// Subsequent reads: only diff (80% reduction)
```
</details>
#### API & Database Operations (10 tools)
<details>
<summary>Click to expand</summary>
Intelligent caching and optimization for external data sources:
- **smart_api_fetch** - HTTP requests with caching and retry logic (83% reduction on cache hits)
- **smart-cache-api** - API response caching with TTL/ETag/event-based strategies
- **smart_database** - Database queries with connection pooling and caching (83% reduction)
- **smart_sql** - SQL query analysis with optimization suggestions (83% reduction)
- **smart_schema** - Database schema analysis with intelligent caching
- **smart_graphql** - GraphQL query optimization with complexity analysis (83% reduction)
- **smart_rest** - REST API analysis with endpoint discovery (83% reduction)
- **smart_orm** - ORM query optimization with N+1 detection (83% reduction)
- **smart_migration** - Database migration tracking (83% reduction)
- **smart_websocket** - WebSocket connection management with message tracking
**Usage Example**:
```typescript
// Fetch API with automatic caching
smart_api_fetch({
method: 'GET',
url: 'https://api.example.com/data',
ttl: 300,
});
// Cached responses: 95% token reduction
```
</details>
#### Build & Test Operations (10 tools)
<details>
<summary>Click to expand</summary>
Development workflow optimization with intelligent caching:
- **smart_build** - TypeScript builds with diff-based change detection
- **smart_test** - Test execution with incremental test selection
- **smart_lint** - ESLint with incremental analysis and auto-fix
- **smart_typecheck** - TypeScript type checking with caching
- **smart_install** - Package installation with dependency analysis
- **smart_docker** - Docker operations with layer analysis
- **smart_logs** - Log aggregation with pattern filtering
- **smart_network** - Network diagnostics with anomaly detection
- **smart_processes** - Process monitoring with resource tracking
- **smart_system_metrics** - System resource monitoring with performance recommendations
**Usage Example**:
```typescript
// Run tests with caching
smart_test({
onlyChanged: true, // Only test changed files
coverage: true,
});
```
</details>
#### Advanced Caching (10 tools)
<details>
<summary>Click to expand</summary>
Enterprise-grade caching strategies with 87-92% token reduction:
- **smart_cache** - Multi-tier cache (L1/L2/L3) with 6 eviction strategies (90% reduction)
- **cache_warmup** - Intelligent cache pre-warming with schedule support (87% reduction)
- **cache_analytics** - Real-time dashboards and trend analysis (88% reduction)
- **cache-benchmark** - Performance testing and strategy comparison (89% reduction)
- **cache_compression** - 6 compression algorithms with adaptive selection (89% reduction)
- **cache_invalidation** - Dependency tracking and pattern-based invalidation (88% reduction)
- **cache_optimizer** - ML-based recommendations and bottleneck detection (89% reduction)
- **cache_partition** - Sharding and consistent hashing (87% reduction)
- **cache_replication** - Distributed replication with conflict resolution (88% reduction)
- **predictive_cache** - ML-based predictive caching with ARIMA/LSTM (91% reduction)
**Usage Example**:
```typescript
// Configure multi-tier cache
smart_cache({
operation: 'configure',
evictionStrategy: 'LRU',
l1MaxSize: 1000,
l2MaxSize: 10000,
});
```
</details>
#### Monitoring & Dashboards (7 tools)
<details>
<summary>Click to expand</summary>
Comprehensive monitoring with 88-92% token reduction through intelligent caching:
- **alert_manager** - Multi-channel alerting (email, Slack, webhook) with routing (89% reduction)
- **metric_collector** - Time-series metrics with multi-source support (88% reduction)
- **monitoring_integration** - External platform integration (Prometheus, Grafana, Datadog) (87% reduction)
- **custom_widget** - Dashboard widgets with template caching (88% reduction)
- **data_visualizer** - Interactive visualizations with SVG optimization (92% reduction)
- **health_monitor** - System health checks with state compression (91% reduction)
- **log_dashboard** - Log analysis with pattern detection (90% reduction)
**Usage Example**:
```typescript
// Create an alert
alert_manager({
operation: 'create-alert',
alertName: 'high-cpu-usage',
channels: ['slack', 'email'],
threshold: { type: 'above', value: 80 },
});
```
</details>
#### System Operations (6 tools)
<details>
<summary>Click to expand</summary>
System-level operations with smart caching:
- **smart_cron** - Scheduled task management (cron/Win