Skip to main content
Glama

explore_page

Automatically test every interactive element on a page—clicking buttons, filling inputs, switching tabs—while observing API calls and reporting outcomes with screenshots.

Instructions

Perform a full interactive exploration of a page: discover all elements, click buttons, fill inputs, test tabs, observe API calls, and report what happened. Returns detailed interaction outcomes, API observations, and screenshots. This is the "senior tester" mode — it tries every element and reports what works and what breaks.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
routeYesThe route path to explore (e.g. /dashboard).
authenticatedNoWhether to use the authenticated context. Default false.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/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 does disclose the interactive actions, API observation, and output format. However, it does not warn that clicking buttons and filling inputs may mutate data, trigger side effects, or navigate away from the current state—an important gap for an autonomous exploration tool.

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

Conciseness4/5

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

The description is reasonably concise, front-loaded with the core action, and provides useful detail about outputs. The second sentence adds the 'senior tester' framing but partially repeats the earlier 'tries every element and reports' idea, creating slight redundancy.

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

Completeness3/5

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

The description explains return values (interaction outcomes, API observations, screenshots) because no output schema exists. However, for a tool that performs full interactive exploration and can alter state, it is incomplete without noting prerequisites (e.g., app must be running), potential side effects, or the destructive nature of the actions it performs.

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%, so the schema already documents both route and authenticated. The description adds no parameter-level detail beyond that, such as when authenticated should be true or how the route interacts with the app's base URL. Baseline 3 is appropriate.

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: 'Perform a full interactive exploration of a page' and enumerates concrete actions (click buttons, fill inputs, test tabs, observe API calls). It is clearly distinguished from siblings like scan_page_elements or take_screenshot by presenting itself as the 'senior tester' mode that tries every element and reports what works and breaks.

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 implies when to use it: when you need exhaustive interactive exploration rather than a static scan. However, it never explicitly contrasts it with siblings such as scan_page_elements or execute_scenario, nor does it state when not to use it (e.g., when a non-destructive read-only scan is safer).

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