Skip to main content
Glama
kanishka-namdeo

electron-mcp-server

take_screenshot

Capture a screenshot of the current page in an Electron app to verify visual output during automated testing. Supports saving to a path or capturing the full page.

Instructions

Take a screenshot of current page

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathNo
fullPageNo
sessionIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.3

TDQS

C2.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It does not disclose what the tool returns (base64 data, a file path, a buffer), whether a file is written by default, what happens if 'path' is omitted, or whether the operation is read-only/safe. For a capture tool with zero annotation coverage this is a substantial gap.

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

Conciseness3/5

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

The single sentence is front-loaded and free of filler, which is good. But its brevity reflects under-specification rather than efficiency: no parameter, return, or behavioral detail is included, so the terseness costs the agent useful information.

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

Completeness2/5

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

With no output schema, no annotations, and 0% parameter documentation, the description should do far more work than it does. It omits return format, file-writing behavior, and the meaning of fullPage and path, leaving the agent unable to invoke the tool confidently.

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

Parameters1/5

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

Schema description coverage is 0% across three parameters, and the description explains none of them. It never mentions sessionId (required), fullPage (which changes capture scope), or path (which presumably controls file output). Nothing compensates for the empty schema documentation.

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

Purpose3/5

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

The description gives a clear verb+resource ('take a screenshot of current page'), so the basic purpose is legible. However, it does not distinguish itself from two very close siblings, 'screenshot' and 'capture_element_screenshot', which likely overlap in function. An agent cannot tell from this text why it would choose take_screenshot over screenshot.

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

Usage Guidelines2/5

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

There is no when-to-use guidance, no mention of prerequisites (e.g. requiring an active session), and no routing to alternatives. The phrase 'current page' implies the session context but does not state when this tool is preferred over the near-identical 'screenshot' sibling.

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