Skip to main content
Glama
hooplus1ce

DrissionPage-MCP

by hooplus1ce

按文本找单元格

vtable_find_cell
Read-only

Find cells within a VTable by text, including headers, and retrieve their column, row, and value.

Instructions

在 VTable 全表(含表头)中按文本查找单元格,返回 {col,row,value} 列表。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYes要查找的文本
exactNo是否精确匹配(默认包含匹配)
tab_idNo标签页 id
max_resultsNo最多返回条数
table_indexNo表序号(注意:此处为字符串形式的索引,如 "0")

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

The annotation readOnlyHint is present, so the read-only nature is covered. The description adds the detail that the search includes headers, but does not disclose any other behavioral aspects such as performance implications or result limits.

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?

The description is a single concise sentence that clearly states the purpose. It is front-loaded with the action and resource, with no unnecessary details.

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

Completeness4/5

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

The description is complete for a simple read-only search function. It mentions the return structure and the scope (entire table including headers). The output schema exists, so additional details are not required.

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 descriptions cover 100% of the parameters, so the baseline is 3. The tool description does not add any additional parameter-specific semantics beyond the schema.

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 clearly states the tool's function: searching for cells by text in the entire VTable including headers, and returning a list of {col, row, value}. This is a specific verb and resource, distinguishing it from other VTable operations.

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 usage for text search but does not explicitly compare with sibling tools or state when to prefer this over other VTable functions. It provides no alternative guidance.

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