wps_excel_get_open_workbooks
List all currently open Excel workbooks in WPS Spreadsheets to identify active files for read-only inspection.
Instructions
获取当前所有已打开的Excel工作簿列表。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
List all currently open Excel workbooks in WPS Spreadsheets to identify active files for read-only inspection.
获取当前所有已打开的Excel工作簿列表。
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v1.0.0-hardened.1Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds no additional behavioral context such as return format, ordering, or behavior when no workbooks are open. It is not contradictory, but it adds minimal value beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single short sentence that is front-loaded with the key information. There is no redundant or filler content; every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, read-only list operation with no output schema, the description adequately states what the tool returns: a list of all open Excel workbooks. It does not detail the list element structure or edge cases, but the complexity is low and the annotations cover safety.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters and the input schema is empty, so schema coverage is effectively 100%. With no parameters to document, the description has no extra burden here; baseline 4 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear verb and resource: '获取当前所有已打开的Excel工作簿列表' (get list of all currently open Excel workbooks). It is distinct from siblings like wps_get_active_workbook by using 'all open' rather than 'active', though it does not explicitly name alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when needing to enumerate open workbooks, but it provides no explicit when-to-use guidance, no exclusions, and no mention of sibling tools. Usage is left to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.