Skip to main content
Glama
johnsarie27

joplin-mcp

by johnsarie27

Delete Note

delete_note

Deletes a Joplin note by its ID, moving it to the trash instead of permanent deletion.

Instructions

Delete a note by its id. Moves it to Joplin's trash rather than a permanent delete.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
note_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.3.1

TDQS

A4/5.0
Behavior4/5

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

With no annotations provided, the description carries the full behavioral burden, and it discharges the most important part by disclosing that this is a soft delete moving the note to Joplin's trash rather than a permanent removal. It does not state permission requirements, error behavior for unknown ids, or whether the trash is recoverable/purgeable, so it falls short of exhaustive.

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, front-loaded with the core action and immediately followed by the crucial soft-delete nuance. Nothing is wasted and nothing important is buried.

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 one-parameter mutation tool with an output schema (so return values need not be explained), the description covers the action and the key safety-relevant behavior. It could add recovery/permission context, but the essentials for correct invocation are present.

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?

The schema documents the single note_id parameter only as type string with no description, so coverage is 0%. The description adds the meaning that the id refers to the note being deleted and is the targeting key, which is a modest but real increment over the bare schema.

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 (delete) and resource (note) with the identifier used to target it, and goes further by clarifying the deletion semantics ('by its id'). No sibling competes for this action, so an agent can select it unambiguously.

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 when to use it (you have a note id and want it gone) but offers no explicit conditions, prerequisites, or contrast with related tools like update_note. Usage is inferable but not guided.

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