Skip to main content
Glama
aamar-shahzad

MCP Screenshot Server

get_memory_stats

Retrieve current memory usage statistics for the image store to monitor capacity and troubleshoot performance issues.

Instructions

Get current memory usage statistics for the image store.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
memory_mbYesCurrent memory usage in MB
max_imagesYesMaximum allowed images
image_countYesNumber of images in store
undo_levelsYesMaximum undo history per image
max_memory_mbYesMaximum allowed memory in MB

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior3/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It implies a read-only operation via the verb 'Get' but does not explicitly state non-destructiveness, nor does it describe the output shape or any potential side effects. The output schema covers return values, but the description itself adds little beyond the action.

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 a single, front-loaded sentence with no filler. Every word contributes to the purpose, making it highly efficient and easy to parse.

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 zero-parameter, read-only utility with an output schema, the description is complete. The output schema defines the return structure, and the simple purpose requires no additional context. Nothing an agent needs to invoke it correctly is missing.

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?

There are zero parameters, so the description has nothing to explain. Per the rubric, a tool with 0 parameters receives a baseline of 4. The description does not need to add parameter information since none exist.

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 clearly states the action ('Get') and the resource ('memory usage statistics for the image store'), making it distinct from all sibling tools, none of which appear to return memory statistics. The verb and resource are specific and unambiguous.

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

Usage Guidelines3/5

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

The description provides no guidance on when to use this tool versus alternatives, though no obvious alternative exists among the siblings. It does not mention context such as 'when monitoring performance' or 'before heavy operations,' but the lack of alternatives makes this a minor gap. The purpose is self-evident enough that an agent could infer when it is relevant.

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