Skip to main content
Glama
wooter-s

weixin-devtools-mcp

by wooter-s

navigate_to

Navigate to a specific page in WeChat mini-program tests, supporting query params, redirect mode, and load completion waits.

Instructions

跳转到指定页面

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes目标页面路径
paramsNo页面参数(查询参数)
timeoutNo等待超时时间(毫秒),默认10000ms
redirectNo是否使用重定向模式(关闭当前页面),默认false
waitForLoadNo是否等待页面加载完成,默认true

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYes
codeYes
dataYes
metaYes
errorYes
warningsYes
nextActionsYes
observationYes
partialDataYes
schemaVersionYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.7.0

TDQS

C2.9/5.0
Behavior2/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 of behavioral disclosure. It only restates the navigation action and does not mention side effects such as replacing the current page, redirect-closing behavior, load-waiting semantics, or failure behavior.

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 one short, front-loaded sentence with no filler. It is concise, though it is minimal enough that behavioral and usage context is left to other dimensions.

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 schema covers all five parameters and an output schema exists, so the return contract does not need explaining. Still, the description gives no usage context or behavioral nuance, leaving the agent to infer alternatives and side effects; this is adequate but not rich.

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 parameters are already documented with types, defaults, and meanings. The description's 'specified page' only loosely maps to the url parameter and adds no value beyond the schema.

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?

Description states a concrete action ('navigate/jump') and a resource ('specified page'), so an agent can tell this is a page-navigation tool. It does not explicitly distinguish itself from sibling navigate_back, so it stops short of a 5.

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 guidance is given about when to choose navigate_to over navigate_back, switch_tab, or other navigation-related siblings. There are no conditions, exclusions, or alternative tool mentions; the agent must infer usage from the name alone.

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