Skip to main content
Glama
sohaibsohail98

mcp-context-inspector

Server Quality Checklist

83%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.4.0

  • Disambiguation5/5

    Each read tool targets a distinct slice of session data—totals, per-turn breakdown, tool-call counts, ordered trace, cost, context timeline, and session discovery—and the descriptions explicitly point to which tool to use. record_session is the only write tool and is clearly separated. No two tools are fungible.

    Naming Consistency5/5

    All read tools follow a consistent get_<object>_<metric> snake_case pattern, and the single write tool uses the verb record_session. The naming is predictable and matches each tool's function without mixing conventions.

    Tool Count5/5

    Eight tools is well-scoped for a session-metrics store: one intake tool, one session-discovery tool, and six focused query/analytics views. Each tool earns its place with no redundancy or bloat.

    Completeness5/5

    The server covers the full intended lifecycle: record_session ingests runs, get_recent_sessions discovers session IDs, and the get_* tools provide totals, turn-level detail, tool traces, cost estimates, and context-window composition. Update and delete are deliberately excluded from this append-only metrics store, so there are no obvious dead ends.

  • Average 4.9/5 across 8 of 8 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 89 commits in the last 12 weeks
    • Last stable release on
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI is failing
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • This repository includes a glama.json configuration file.

  • This server has been verified by its author.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior4/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    Annotations already declare readOnly, idempotent, and non-destructive behavior, so the description does not need to restate those. It adds meaningful behavioral context by explaining ownership-based visibility: non-owners see only their own sessions while the owner token sees all, plus the output format in the sample.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is compact and front-loaded: a one-line summary, a usage-direction sentence, and a parameter note. Every sentence serves a distinct purpose with no filler or repetition.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness5/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    This is a low-complexity tool with one optional parameter. The description covers what it returns, how results are ordered, the visibility rules, and how it relates to sibling tools. There is no output schema, but the sample shape compensates adequately.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters5/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema coverage is 0%, so the description carries full responsibility for explaining the 'limit' parameter. It does so clearly: 'max rows to return (default 10), newest first.' This adds semantic meaning beyond the raw integer schema and fully compensates for the missing schema description.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description opens with a specific verb and resource: 'List recent sessions, newest first' and includes a sample result shape. It also distinguishes this tool's role as the discovery entry point for session_ids used by the other get_* tools, making it easy for an agent to know exactly what it does.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The phrase 'Call this first to discover session_ids for the other get_* tools' gives explicit sequencing and intent, which is strong usage guidance. It does not spell out exclusion cases, but the context makes it clear this is the intended first step before sibling get_* tools.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior4/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds meaningful behavior beyond that: the ordered return shape (each entry with name, args, status) and the empty-array return for unknown or non-owned sessions, which is not implied by the schema.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    Three sentences, each purpose-specific: output definition, usage vs. alternative, and parameter sourcing. No filler and the most important information is front-loaded.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness5/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a single-parameter read-only tool with no output schema, the description provides the output format, ordering guarantee, empty-array edge case, and parameter provenance. Nothing essential is missing for correct invocation.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 0%, so the description compensates by documenting session_id as 'id from get_recent_sessions / record_session'. This tells the agent where to obtain the ID and what it refers to, which the bare string type does not convey.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    Description opens with 'The ordered sequence of tool calls for one session -- each entry {name, args, status}', which clearly states the verb, resource, and output structure. It explicitly contrasts with get_tool_metrics, so an agent can tell them apart.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines5/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    Description explicitly instructs: 'Use to replay what the agent actually did, in execution order; use get_tool_metrics for aggregate counts.' This names the alternative and the condition selecting it, leaving no ambiguity about when to use this tool.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior4/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    Annotations already communicate read-only, idempotent, and non-destructive behavior. The description adds useful behavioral details beyond the annotations: results are in turn order, and an unknown or non-owned session returns an empty list. It does not specify units for latency, but the annotation coverage lowers the burden.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is compact and well-structured: a definitional first sentence, a usage-routing second sentence, and a parameter/edge-case note. Every sentence earns its place without redundancy.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness5/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a single-parameter read-only operation, the description covers purpose, expected output shape, turn ordering, token and latency aspects, parameter provenance, and the empty-list edge case. No output schema exists, but the description provides enough conceptual shape to invoke the tool correctly.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The input schema provides no description for session_id, so the description compensates by explaining that session_id comes from get_recent_sessions or record_session. This gives an agent the source and provenance of the parameter, which is meaningful given the 0% schema description coverage.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description states a specific verb and resource: it provides per-turn input/output token and latency breakdown for one session, in turn order. It also explicitly distinguishes itself from get_session_metrics, so an agent can tell when this tool applies.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines5/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description gives direct usage context: use this tool to see how token usage grew turn-by-turn within a session, and use get_session_metrics for session totals. This explicit routing to a sibling tool makes the selection criteria clear.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior5/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    Annotations already mark this as read-only, idempotent, and non-destructive, so the bar is lower. The description adds meaningful behavioral context: estimates are not billed amounts, and unknown/non-owned session IDs as well as empty periods return 0.0. These are exactly the edge cases an agent needs to anticipate.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is compact and front-loaded with the core meaning, then moves to usage modes, then edge cases. Each sentence earns its place; no filler or repetition of annotation values.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness5/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the annotations already cover safety and idempotency, and an output schema exists, the description supplies all remaining needed context: parameter semantics, exclusivity, scoping, estimate nature, and zero-value fallback behavior. An agent can invoke this tool correctly without further inference.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters5/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 0%, so the description carries the full burden for parameter meaning. It explains both parameters in plain language, gives an example value for period_seconds, and clarifies mutual exclusivity plus ownership scoping. This fully compensates for the bare schema.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description opens with a precise statement of purpose: 'Estimated USD cost as a float.' It clearly identifies the resource (session cost) and the computation basis (token counts and a static price table), and distinguishes this from billed amounts, which separates it from related metrics tools.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description gives explicit usage guidance: pass exactly one of session_id or period_seconds, explains what each mode computes, and notes non-owner scoping. It does not explicitly name sibling tools as alternatives, but for this tool the parameter-mode distinction is the main usage decision and it is covered clearly.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior5/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    Beyond the annotations (readOnlyHint, idempotentHint, destructiveHint), the description discloses that estimates are character-based rather than exact Bedrock counts, that it returns [] for unknown/non-owned sessions or sessions lacking the optional context_blocks field, and that blocks are classified as user-visible vs invisible overhead. These are non-obvious behaviors an agent would not know from the schema alone.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    Every sentence earns its place: the first sentence states the core purpose, the second explains the breakdown format, the third gives usage guidance, and the final two cover parameters and return behavior. There is no filler, and the key differentiator is front-loaded.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness5/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a tool with one string parameter, read-only annotations, and no output schema, the description provides sufficient context: what the tool returns, how it behaves for missing/unknown sessions, what the session_id should be, and how the estimates differ from exact metrics. An agent can both select and safely invoke this tool without further assumptions.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters5/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The schema only defines session_id with no textual description (0% coverage), but the description explicitly says 'session_id: id from get_recent_sessions / record_session.' This completely compensates for the schema gap by telling the agent exactly where the id comes from.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description opens with a specific, differentiated statement: 'Ordered, categorized breakdown of everything that entered ONE session's context window.' It names the resource (a session's context window) and the operation's output form, and it later explicitly distinguishes itself from get_session_metrics by noting exact token usage is not what this returns.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines5/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description explicitly states when to use the tool: 'Use for context-window composition analysis.' It also names the alternative for exact token usage: 'use get_session_metrics for exact provider token usage.' This gives the agent an unambiguous routing decision.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior5/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior. The description adds valuable behavior beyond that: it specifies the exact error response format and discloses that unknown and unowned IDs are deliberately indistinguishable, which is useful privacy/security context an agent needs to interpret failures correctly.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is compact yet information-dense. It front-loads the core purpose, then covers usage alternatives, parameter semantics, and error behavior in ordered paragraphs. Every sentence adds necessary information without redundancy.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness5/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Despite having no output schema, the description adequately summarizes the return content: metadata plus per-prompt tokens, latency, and cost. It also explains error behavior and how to obtain a valid session_id. For a single-parameter, read-only tool, nothing essential is missing for an agent to select and invoke it correctly.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters5/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema coverage is 0%, so the description carries the full burden for the session_id parameter. It does so thoroughly: 'the opaque, case-sensitive id returned by record_session or listed by get_recent_sessions' adds provenance and case-sensitivity details that the bare schema string type cannot convey.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description uses a specific verb and resource: 'Full metrics for ONE recorded session: metadata plus per-prompt tokens, latency, and cost.' It names the exact scope (one session) and distinguishes itself from siblings like get_context_timeline and get_cost_estimate without needing to inspect those tools.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines5/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    It explicitly states when to use it: 'Use when you have a session_id and need exact provider usage numbers for that session.' It then names alternatives for other cases (get_context_timeline for block-by-block context composition, get_cost_estimate for cross-session totals), providing clear selection criteria.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior5/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior. The description adds valuable behavioral context: results are grouped by ok/error, omitting session_id aggregates across sessions, and non-owners only see their own sessions while the owner sees everyone's.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is compact and well-structured: core purpose first, then usage guidance, ownership caveat, and parameter detail. Every sentence earns its place with no redundancy.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness5/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a simple one-parameter read-only metrics tool with no output schema, the description covers purpose, when to use an alternative, ownership scoping, and parameter semantics. Nothing essential is missing.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters5/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 0%, but the description fully compensates by explaining the only parameter, session_id: omit for the aggregate across all sessions, or pass an id for just that session. This is exactly the semantic information an agent needs.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    States a specific verb and resource: it returns tool-call counts grouped by status (ok/error) for one session or aggregated. It distinguishes itself from get_agent_trace by framing itself as a summary rather than an ordered call list.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines5/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    Explicitly says to use this tool for a quick success/failure summary and to use get_agent_trace for the ordered call list. It also gives clear direction on omitting versus passing session_id, plus an ownership-based visibility caveat.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior5/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    The description explicitly notes non-idempotency, that each call mints a new session_id, that existing sessions are never updated or deleted, and that records are attributed to the connected identity (Google account or owner=None). This complements the annotations, which are structural hints, with concrete side-effect details.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is long, but every section earns its place: purpose and identity semantics are front-loaded, parameter details are systematically organized, and the example makes the nested structure concrete. Its length is proportional to the complexity of the tool.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness5/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given a nested parameter object, an existing output schema, and complex optional branches, the description is complete: it covers auth attribution, return value, non-idempotency, required/optional fields, defaults, and a worked example.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters5/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema coverage is 0%, and the description fully compensates: it defines prompt, model_id, and loop_result, and enumerates required and optional nested keys for turns, trace, and context_blocks with a complete JSON example.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    Starts with a specific verb and resource: 'Append ONE agent execution's metrics to this server's store; returns the new session_id.' It clearly identifies this as the write counterpart to the get_* read tools, so an agent can differentiate it without opening the schema.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines5/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description states when it is appropriate: 'This is how a remote agent gets its own runs into the server, rather than only being able to query what the server owner recorded locally.' It also clarifies it never updates or deletes and that read access happens through the get_* siblings.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

mcp-context-inspector MCP server – quality and maintenance score on Glama

Copy to your README.md:

Score Badge

mcp-context-inspector MCP server – quality and maintenance score on Glama

Copy to your README.md:

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/sohaibsohail98/mcp-context-inspector'

If you have feedback or need assistance with the MCP directory API, please join our Discord server