Skip to main content
Glama
mrliuzhiyu

textview-mcp

by mrliuzhiyu

list_documents

Retrieve documents from TextView sorted by update time, with optional title search and limit. Find recent notes or search saved documents.

Instructions

列出 TextView 中的文档,按更新时间倒序排列。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo返回数量,默认 20
searchNo按标题模糊搜索

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.1.0

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations, the description carries the burden but only discloses one behavioral trait: results are sorted by update time descending. It says nothing about pagination behavior, whether limit caps the total result set, or how to exhaustively retrieve all documents.

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 short sentence with the resource and the ordering constraint front-loaded; nothing wasteful.

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?

For a simple two-optional-parameter list tool with no output schema and no annotations, the description covers scope and ordering but omits pagination behavior and result-envelope details. Adequate but with a noticeable gap for an agent deciding how to page through documents.

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 both limit (default 20, max 100) and search (fuzzy title match) are already documented in the schema. The description adds no parameter-level detail beyond that, so the baseline 3 applies.

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?

States a specific verb (列出/list) and resource (文档/documents) with the source context (TextView) and ordering. Clearly distinguishable from the sibling list_memos by resource, 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.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides no guidance on when to use this versus get_document or list_memos. The ordering statement hints at listing semantics but there are no conditions, prerequisites, or exclusions stated.

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