Skip to main content
Glama
drmaxbdc

@drmaxbdc/productboard-mcp

by drmaxbdc

update_note

Change an existing Productboard note by replacing fields or applying granular patches to set, clear, add, or remove items.

Instructions

Update an existing Productboard note. Use 'fields' for simple replacement or 'patch' for granular operations (set, clear, addItems, removeItems).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesNote UUID to update
patchNoGranular patch operations. Mutually exclusive with fields.
fieldsNoFields to replace. Mutually exclusive with patch.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.1.1

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It says 'update' but discloses nothing about permissions required, reversibility, atomicity of patch operations, partial-failure behavior, or the response shape. For an un-annotated mutation tool with nested objects, this is a substantial gap.

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?

Two sentences, zero waste, with the core action front-loaded and the parameter guidance following immediately. Every clause earns its place.

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

Completeness2/5

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

A mutation tool with no annotations, no output schema, and nested objects needs more disclosure than this. The description explains the two write modes but omits permission requirements, error/partial-update behavior, and response format, leaving the agent under-informed about execution consequences.

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 coverage is 100%, so the schema already documents id, patch, and fields, including the op enum and mutual exclusivity. The description's mention of set/clear/addItems/removeItems merely restates the schema enum, though it does add a light semantic contrast between the two modes. 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?

The description states a specific verb+resource: 'Update an existing Productboard note.' This is clear and distinct from get_note/create_note/delete_note. It stops short of explicitly differentiating itself from the similarly-named update_entity sibling, which the name alone leaves ambiguous.

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?

It provides a within-tool rule ('fields' for simple replacement vs 'patch' for granular operations), which is helpful, but gives no guidance on when to choose update_note over update_entity or other siblings, and no prerequisites or exclusions. Usage is implied rather than stated.

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