Skip to main content
Glama

page_open

Opens a specified page on the TSE/TSETMC portal using a saved read-only session, blocking non-GET requests to ensure safe viewing of authenticated market data.

Instructions

Open a page on the TSE/TSETMC portal with the saved read-only session. Non-GET requests are blocked.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes
waitMsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations present, the description carries the full burden of behavioral disclosure. It usefully reveals that the session is read-only and that non-GET requests are blocked, but it omits other behavioral context such as how redirects or invalid URLs are handled and what the tool returns.

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 a single, front-loaded sentence with no filler. Every phrase contributes meaning, and the critical constraint about non-GET requests is placed clearly.

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?

For a tool with no annotations and no output schema, this description is too thin. It leaves out the meaning of waitMs, expected return value, prerequisite conditions beyond a 'saved' session, and how failures are surfaced, making it incomplete for an agent to invoke confidently.

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

Parameters2/5

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

Schema description coverage is 0% and the description adds no parameter-level detail. The url parameter is somewhat inferable from 'open a page', but waitMs is completely unexplained in terms of purpose or effect.

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 names a specific action ('Open'), a target resource ('a page on the TSE/TSETMC portal'), and a constraining context ('saved read-only session'). It is immediately differentiable from siblings like page_read, which implies reading content rather than navigating to a page.

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 the tool — to open a page while relying on an existing read-only session — and adds the exclusion that non-GET requests are blocked. However, it does not explicitly name alternatives or state conditions for preferring this tool over page_read or session_status.

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