Skip to main content
Glama
everton-dgn

vault-search-mcp

by everton-dgn

write_note

Create or overwrite a Markdown note in the vault at the specified path with the provided content.

Instructions

Overwrite or create a Markdown note from complete content.

Use this when the caller already has the complete .md content.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesvault-relative path, such as 'folder/note.md'
contentYescomplete note content

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior3/5

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

The description reveals the destructive nature ('Overwrite') but does not mention other side effects such as creating parent directories, updating metadata, or handling of existing content beyond replacement. With no annotations, more detail would improve transparency.

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 extremely concise, with two sentences: one stating the function, one providing usage guidance. No wasted words.

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?

The tool is simple, and the description covers the primary purpose and usage condition. It does not mention error cases or return values, but those are likely covered by the output schema (not shown) and the simplicity of the operation.

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 parameters are fully described in the schema (path as vault-relative path, content as complete note content), so the description adds little beyond restating that content must be complete. Baseline of 3 is appropriate.

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?

Clearly states the action ('Overwrite or create'), the target ('Markdown note'), and the input ('complete content'). It distinguishes itself from append_note by specifying the caller already has complete content.

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

Usage Guidelines5/5

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

Provides an explicit condition for use: 'Use this when the caller already has the complete .md content.' This tells the agent exactly when to select this tool over alternatives like append_note or create_note.

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