whats-loaded-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| context_budgetA | The headline answer: how much of the context window is consumed before the conversation starts, broken down by source (skills, memory files, MCP servers). Use this first. |
| skill_costsA | Skills ranked by how many tokens their always-loaded description costs. The top of this list is where trimming pays off most. |
| duplicate_skillsA | Skills whose name appears more than once (same skill installed from several sources). Every copy pays full description cost in every session. Copies are compared by content hash: identical copies are safe to remove, same-name copies that DIFFER are flagged for review because deleting one would lose work. |
| memory_filesA | CLAUDE.md / AGENTS.md files that load in full every session, including files pulled in by |
| mcp_serversA | Every MCP server configured across the agent clients on this machine, and which config declares it — useful for spotting servers you forgot you installed. Environment variable NAMES only; values are never read. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each tool has a clearly distinct purpose: context_budget provides the overview, while skill_costs, duplicate_skills, memory_files, and mcp_servers drill into specific sources of context consumption. The descriptions reinforce a natural hierarchy rather than overlapping functionality.
All tool names follow a consistent lowercase snake_case noun-phrase pattern: context_budget, skill_costs, duplicate_skills, memory_files, mcp_servers. There are no mixed conventions or vague verb clashes.
Five tools is well-scoped for the server's purpose: one summary tool and four detailed drill-down tools. Each tool earns its place and the set is neither bloated nor too thin.
The tool surface covers the stated domain completely: the headline context budget plus dedicated tools for skills, memory files, and MCP servers. The duplicate_skills tool adds useful lifecycle insight without leaving obvious gaps.