Skip to main content
Glama
ferronicardoso

mcp-obsidian

delete_note

Delete a specified note from your Obsidian vault by providing its path and confirming with true, preventing accidental removals.

Instructions

Deletes a note from the vault. Requires explicit confirm=true as a guardrail against accidental deletion.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesRelative path of the note inside the vault
confirmYesMust be true to confirm the deletion

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It clearly discloses the destructive action and the confirm=true guardrail, but it does not state whether deletion is permanent or reversible, what happens to backlinks, or any side effects.

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?

The description is a single front-loaded sentence with no filler. Every word earns its place, and the key guardrail is mentioned immediately after the core purpose.

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 destructive two-parameter tool without annotations or an output schema, the description covers the essential action and confirmation requirement but omits important context such as permanence, error cases, or whether the operation can be undone.

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 baseline is 3. The description adds no further meaning beyond restating confirm=true, while path's relative-vault semantics are already fully documented in the 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?

The description uses a specific verb and resource ('Deletes a note from the vault'), making the tool's purpose unambiguous and clearly distinct from siblings like list_notes, read_note, and 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 Guidelines3/5

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

The description implies this tool is for deleting a note and explicitly notes that confirm=true is required, but it does not state when to use it versus alternatives or provide exclusions such as checking with read_note first.

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