Skip to main content
Glama
babybuddy

babybuddy-mcp

Official
by babybuddy

notes_update_note

Update an existing note by changing only the provided fields: text, tags, time, or attached image. Specify the note ID to apply targeted edits.

Instructions

Update an existing note. Only provided fields are changed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteNoNew note text
tagsNoNew list of tag names (replaces existing tags)
timeNoNew time in ISO 8601 format
note_idYesID of the note to update
image_pathNoPath to a local image file to attach to the note

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior3/5

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

No annotations provided, so the description is the sole source. It discloses the partial-update behavior, which is useful, but lacks info on side effects, permissions, or return value. It adds value beyond the schema but is minimal.

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 short sentences with no fluff; the key behavior is front-loaded after the action. Extremely concise.

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?

Given the output schema exists and parameters are fully documented, the description covers the critical usage rule (partial update). It doesn't mention clearing tags via null, but that's a detail in the schema. Overall adequate.

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 parameters are already documented. The description reinforces that only provided fields are changed, adding minimal extra meaning beyond what the schema's optional fields indicate. Baseline 3 applies.

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?

States a specific verb (update) and resource (note), and the phrase 'Only provided fields are changed' distinguishes it from create/delete and clarifies partial update semantics, differentiating from notes_create_note.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

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

Implies usage when the note exists and needs modification; the name and sibling list make it clear that create is for new notes. But no explicit exclusions or alternatives are mentioned, so it's clear context without exclusions.

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

Deploy Server

Other Tools