Skip to main content
Glama

browser_set_timezone

Override the browser's timezone to test location-based behavior across regions like America/New_York or UTC.

Instructions

Override browser timezone (e.g. 'America/New_York', 'Europe/Kyiv', 'UTC').

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
timezoneYesTimezone identifier

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.8.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden. It says 'Override' but does not state scope (per-tab vs global), whether the change persists across navigation, whether it applies to already-loaded pages, or whether it is reversible.

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?

A single front-loaded sentence with zero waste; the resource comes first and the examples are parenthetical rather than filler.

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 state-mutating setter with no annotations and no output schema, key context is missing: invocation scope (tab vs browser-wide), persistence, and timing of effect. The description is under-specified for the operation 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 coverage is 100% for the single parameter, and the schema already labels it 'Timezone identifier.' The inline examples ('America/New_York', 'Europe/Kyiv', 'UTC') usefully demonstrate the IANA format, but this is marginal added value over the schema baseline.

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

Purpose4/5

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

Specific verb 'Override' plus resource 'browser timezone' is unambiguous. It does not, however, differentiate itself from siblings like browser_emulate_environment or browser_set_geolocation, which could plausibly also touch timezone-related state.

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?

No when-to-use guidance, no prerequisites, and no mention of alternatives such as browser_emulate_environment. An agent must infer that this is a per-tab override setter.

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