Skip to main content
Glama
aamar-shahzad

MCP Screenshot Server

configure_limits

Set memory and storage limits for captured images, including maximum image count, undo history, and memory usage. Lowering limits triggers eviction to free resources.

Instructions

Configure memory limits for the image store. Triggers eviction if new limits are lower.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
max_imagesNoMaximum number of images to keep (default: 50)
undo_levelsNoMaximum undo history per image (default: 10)
max_memory_mbNoMaximum memory in MB (default: 500)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
messageYesStatus message
max_imagesYesNew maximum image count
undo_levelsYesNew undo history limit
evicted_countYesNumber of images evicted after applying new limits
max_memory_mbYesNew maximum memory in MB

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior4/5

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

No annotations are present, so the description carries the full burden. It does disclose a key non-obvious side effect: lowering limits triggers eviction. However, it stops short of explaining what eviction entails (e.g., which images are removed, reversibility), leaving some behavioral ambiguity.

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?

Two sentences with zero filler: the first states the core function, the second provides the important side-effect warning. Every word earns its place.

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

Completeness4/5

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

For a three-optional-parameter configuration tool with an output schema, the description is mostly sufficient: purpose, side effect, and the schema's defaults cover the essential call information. Missing explicit interaction with get_memory_stats or eviction behavior detail are minor gaps.

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

Parameters3/5

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

Schema description coverage is 100%, with all three parameters (max_images, undo_levels, max_memory_mb) already documented with defaults and constraints. The description adds no parameter-specific detail beyond what the schema provides, so baseline 3 applies.

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 ('Configure') with a specific resource ('memory limits for the image store') and adds a concrete behavioral consequence (eviction). It clearly differs from the read-oriented sibling get_memory_stats, so an agent can distinguish the writing operation 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 Guidelines3/5

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

The intended use is implied: configure limits when you want to change the image store's memory behavior, while get_memory_stats is the read counterpart. However, the description gives no explicit when-to-use guidance, exclusions, or mention of prerequisites.

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