Skip to main content
Glama

wb_note

List, add, and edit notes using wb-cli commands. Write operations require confirmation.

Instructions

笔记域:note 命令族(笔记列表/新增/编辑)。含写操作需 confirm。(本域含写操作)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
argsNo命令参数数组(推荐,长文安全):如 ["note","add","这里是500字正文,含空格换行都不会被切碎","#工作笔记"]。数组元素原样作为 argv 传给 wb-cli,不按空白切分。command 仍需传(可传命令串本身),实际执行以 args 为准。
commandYeswb-cli 命令串(不含 wb-cli 前缀),如 "t todo"、"todo list --open"、"dev-task show dt_xxx"。与 args 二选一:传了 args 时 args 优先。各域允许的首词见 tool description。
confirmNo写操作必传 true(安全门)。判定为写操作的命令(add/done/edit/del/stage/item 等)缺 confirm 会被拒绝。

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv5.10.1

TDQS

B3.4/5.0
Behavior3/5

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

There are no annotations, so the description carries the behavioral transparency burden. It does disclose that the domain contains write operations and that confirm is required, which is safety-relevant. It does not describe side effects, reversibility, or output behavior, but the explicit write/confirm warning provides meaningful value.

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 short and front-loaded with the domain and command family, followed by the confirm requirement. The parenthetical '(本域含写操作)' is mostly redundant with the preceding sentence, so it is not perfectly economical, but overall every other part earns its place.

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 generic command-family dispatcher with no annotations and no output schema, the description provides the core scope and the confirm gate, which is essential for safe invocation. However, it does not enumerate the full set of note subcommands or clarify the relationship with wb_note_add/wb_note_edit, leaving some context missing.

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 schema already documents command, args, and confirm thoroughly. The description adds only the high-level note-domain context and the confirm requirement, which is already in the schema. This meets the baseline but does not add extra parameter-level detail.

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?

The description states a specific resource ('笔记域/note 命令族') and the operations it covers ('笔记列表/新增/编辑'), so an agent can tell it is the note-domain command tool. It does not explicitly contrast itself with the sibling tools wb_note_add and wb_note_edit, which slightly weakens sibling differentiation.

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 note list/add/edit operations and gives a clear operational rule: write operations require confirm. However, it does not explain when to prefer wb_note over the more specific wb_note_add/wb_note_edit siblings, nor does it list exclusions or alternatives explicitly.

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