Skip to main content
Glama
babybuddy

babybuddy-mcp

Official
by babybuddy

notes_delete_note

Permanently delete a note from Baby Buddy by providing its ID. Removes the note irreversibly.

Instructions

Delete a note. This action is permanent.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
note_idYesID of the note to permanently delete

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

No annotations are present, so the description carries the full burden. It explicitly adds 'This action is permanent,' which is the key behavioral trait for a delete operation. However, it omits any mention of prerequisites, cascading effects, or error conditions.

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, direct sentences with zero filler. The main action is first, followed by the critical warning about permanence. Every word earns its place.

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?

For a single-parameter delete operation with an output schema and a clear warning about permanence, the description covers the essential call requirements. It lacks usage guidance, but nothing critical for actually invoking the tool is 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%, with note_id already described as 'ID of the note to permanently delete.' The tool description adds no parameter-level meaning beyond the schema, matching the baseline.

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 states a specific verb ('Delete') and resource ('a note'), cleanly differentiating this tool from siblings like notes_delete_tag and notes_update_note. The scope is unambiguous: removing a note, not modifying or creating one.

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?

No guidance is provided on when to use this tool versus alternatives, or any exclusions. The agent must infer from the name and schema that this is for permanently removing a note.

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