mcp-usage
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-usagewhich of my MCP servers should I disconnect?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-usage
A small, focused MCP server and CLI that reads your local Claude Code transcripts and tells you, for every MCP server you have connected, whether it is actually used, sits idle in every session, fails to connect, or has been waiting for authorization for weeks — and what to disconnect.
Built for one job: answer "which of my MCP servers should I keep?" — locally, read-only, without ever exposing a word of your conversations.
Tools
Four tools, all read-only:
Tool | What it does |
| One row per server: status, tools exposed, sessions, calls, error rate, estimated result tokens, last use |
| Servers that were connected but never called, failed to connect, or are waiting for authorization |
| One server in full, with per-tool calls, errors and result size (accepts the id or the label, case-insensitive) |
| A prioritized action list: disconnect, fix or remove, authorize or remove, investigate errors, heavy results |
Design choices:
Exact, not guessed. Claude Code already records, in every session, which MCP tools were available and which servers failed or needed auth. "Available but never used" is a set difference over your own logs, not a heuristic.
Private by construction. No network code at all. The output holds server names, tool names, counts, byte totals and timestamps — never prompts, responses, tool inputs, tool outputs, file paths or error messages. The test fixtures plant
SECRET_*markers everywhere private content lives in a real transcript, and the tests assert none of them reach the library, the CLI or the MCP output.Fast on big histories. Transcripts are streamed line by line and lines that cannot matter are skipped before
JSON.parse: ~360 MB of history (including a 90 MB session) scans in about 3 seconds.Hygiene, not billing. Cost analyzers (ccusage, agent-cost-mcp, …) tell you how many tokens and dollars you spent. This tells you which servers earn their place.
Every tool ships a strict input schema and MCP annotations (
readOnlyHint,idempotentHint) so hosts can auto-approve them.
Related MCP server: mcp-checkup
Requirements
Node.js 22 or newer.
Claude Code (CLI, desktop app or IDE extension) with some session history on this machine. Nothing else: no account, no API key, no configuration.
1. Run the report
No install needed, npx fetches the package from npm (@rixtay/mcp-usage, the installed command is mcp-usage):
npx -y @rixtay/mcp-usageOr from a clone:
git clone https://github.com/Rixtayz/mcp-usage.git
cd mcp-usage
npm install && npm run build
node dist/bin/cli.jsOption | Purpose |
| Look back this many days (default 30) |
| Only scan projects whose path contains this text |
| Sessions before an unused server is flagged (default 5) |
| Claude config directory (default: |
| Print the full report as JSON, including per-tool stats |
Text output truncates long lists; --json always contains everything.
2. Connect to Claude Code
claude mcp add --scope user --transport stdio mcp-usage -- npx -y @rixtay/mcp-usage serve3. Connect to Claude Desktop / Cowork / any MCP client
Edit ~/Library/Application Support/Claude/claude_desktop_config.json on macOS (or %APPDATA%\Claude\claude_desktop_config.json on Windows), reachable through Settings → Developer → Edit Config.
{
"mcpServers": {
"mcp-usage": {
"command": "npx",
"args": ["-y", "@rixtay/mcp-usage", "serve"]
}
}
}If the host cannot find npx (it may not inherit your shell PATH), use absolute paths instead: "command": "/absolute/path/to/node", "args": ["/absolute/path/to/mcp-usage/dist/bin/cli.js", "serve"].
The server reads Claude Code's transcripts wherever it runs, so it only makes sense in local sessions, on the machine where you use Claude Code.
4. Example prompts
"Which of my MCP servers should I disconnect?"
"Which servers have been waiting for authorization the longest?"
"Playwright seems flaky. Which of its tools fail the most?"
"Did I use anything other than Context7 in the last 7 days?"
Typical flow: recommendations → the assistant proposes a cleanup list, you confirm → server_details on anything surprising → you disconnect the servers yourself. The tools never touch your MCP configuration.
What it reports
Each server gets one status:
Status | Meaning |
| Called at least once in the window |
| Its tools were available, but nothing ever called them |
| Never exposed a tool; Claude Code reported a connection failure |
| Never exposed a tool; waiting for authorization |
Recommendations, in priority order:
Action | Rule |
| Unused, and available in ≥ 5 sessions ( |
| Failed to connect in ≥ 3 sessions |
| Waiting for authorization in ≥ 3 sessions |
| ≥ 5 calls and ≥ 30 % of them failed |
| Results average ≥ 10,000 estimated tokens per call |
Development
npm test # vitest: name parsing, streaming parser, aggregation, rules, CLI, MCP tools over an in-memory transport
npm run typecheck
npm run inspect # MCP Inspector against the built serverLayout:
src/bin/cli.ts entry point: `mcp-usage` prints the report, `mcp-usage serve` serves stdio
src/cli.ts argument parsing and output
src/server.ts builds the McpServer and registers the four tools
src/analyze.ts options → report; the one function both shells call
src/parser.ts streaming JSONL reader → typed events
src/aggregate.ts events → per-server stats
src/recommend.ts stats → prioritized recommendations
src/report.ts text table rendering
src/scan.ts transcript discovery (--since, --project)
src/adapters/claude-code.ts the only client-specific code, behind a small ClientAdapter interface
src/names.ts `mcp__<server>__<tool>` parsing and server id manglingStack: @modelcontextprotocol/sdk v1, zod v4, nothing else at runtime. Design notes: docs/DESIGN.md.
Things worth knowing
The transcript format is not a public API. It is parsed defensively — every field optional, unknown records ignored, malformed lines counted and skipped — but a future Claude Code release can still break it. Tested against Claude Code 2.1.233 – 2.1.274.
Token figures are estimates: result bytes ÷ 4, text only. Transcripts record no per-result token count, and image results are not counted.
Tool names are split on the first
__after themcp__prefix. Server ids can contain underscores, hyphens, dots or be a bare UUID, and tool names can contain__themselves, so a naivesplit("__")miscounts.The same connector can appear under two names — a readable one in the CLI, a UUID in the desktop app. They are not merged.
Servers bundled with the Claude desktop app (
ccd_*) are reported but never flagged for disconnection: you cannot remove them.Claude Code deletes old transcripts, so a long
--sincewindow only sees what is still on disk.Claude Code only, for now. Adapters for other clients are welcome.
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
2,000+ MCP servers read at source level. Know what one does before you connect. Free, no key.
A paid remote MCP for OpenAI Codex agent coordination MCP, built to return verdicts, receipts, usage
Paid remote MCP for Claude Code skill update gate MCP, structured receipts, audit logs, and reviewer
Agents report which MCP servers, APIs and CLIs actually worked. Look up before use, report after.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceMCP server that audits other MCP servers. Run MCPWatch security scans from inside Claude Code or any MCP-compatible agent with 10 OWASP MCP Top 10 aligned checks and A-F letter grades.MIT
- AlicenseNot gradedqualityDmaintenanceDiagnoses MCP server token costs, finds duplicates, grades efficiency, and generates optimization reports.39 npm1MIT
- AlicenseAqualityCmaintenanceMCP server that provides read-only analysis of Claude Code session transcripts, enabling queries about project activity, session details, and tool usage.3MIT
- AlicenseNot gradedqualityBmaintenanceMCP server for safely continuing long Claude Code sessions by cleaning transcripts, removing runtime noise, and generating verified resumable sessions with rollback support.MIT