Skip to main content
Glama
alex106

obsidian-secondbrain-mcp

by alex106

move_note

Moves or renames notes within your Obsidian vault by specifying source and destination paths, with optional overwrite control.

Instructions

Move or rename a note inside the vault.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
srcYes
destYes
overwriteNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.8/5.0
Behavior2/5

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

With no annotations, the description carries full responsibility for disclosing side effects. It reveals that the tool mutates the vault, but it does not mention overwrite behavior, whether links/backlinks are updated, or what happens when the destination already exists.

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 contributes to the core purpose, making it appropriately concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutating tool with no annotations, no output schema, and three undocumented parameters, the description is too thin. An agent lacks enough detail to predict overwrite semantics, return values, or how renaming interacts with the vault.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description does not explain src or dest path formats or the meaning of overwrite. The parameter names are suggestive, but the overwrite default and rename semantics are left undocumented.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Move or rename') and a clear resource ('a note inside the vault'), so an agent knows the core operation. It does not explicitly differentiate from siblings like archive_note, but the action is unambiguous.

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 given about when to use move_note versus a sibling like archive_note or patch_section, or how moving differs from renaming in practice. The description states what it does but leaves tool selection entirely to inference.

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