Skip to main content
Glama
bezata

kObsidian MCP

by bezata

Move Note Or Folder

notes.move
DestructiveIdempotent

Move notes or folders to a new path while updating all references. Overwrites destination if exists.

Instructions

Move a note or folder to a new path. kind:'note' moves a single .md file; kind:'folder' moves a directory and every note beneath it. When updateLinks:true (the default), wiki and markdown links elsewhere in the vault that reference the moved path are rewritten to point at the new location. Destructive — overwrites or replaces existing content at the destination. Fails when the source does not exist.

Operates on the session-active vault (see vault.current — selectable via vault.select) unless an explicit vaultPath argument is passed, which always wins.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
targetYesThe path or identifier the tool acted on.
changedYesTrue if the tool altered vault state on this call; false if it was a no-op.
summaryYesShort human-readable summary of what happened.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Addedv0.3.5
  2. Removedv0.3.4
  3. Changed10 schema fields changedv0.1.2
    • removedInput schema / $schema
      Removed value: -"http://json-schema.org/draft-07/schema#"
    • removedInput schema / properties / destinationPath
      Removed value: -{
      -  "maxLength": 255,
      -  "minLength": 1,
      -  "type": "string"
      -}
    • removedInput schema / properties / sourcePath
      Removed value: -{
      -  "maxLength": 255,
      -  "minLength": 1,
      -  "type": "string"
      -}
    • removedInput schema / properties / updateLinks
      Removed value: -{
      -  "type": "boolean"
      -}
    • removedInput schema / properties / vaultPath
      Removed value: -{
      -  "type": "string"
      -}
    • removedInput schema / required
      Removed value: -[
      -  "sourcePath",
      -  "destinationPath"
      -]
    • addedOutput schema / description
      Added value: +"Standard mutation envelope. Individual tools may attach additional fields (e.g. `created`, `appended`, `before`/`after` counts) — those are documented in the tool description."
    • addedOutput schema / properties / changed / description
      Added value: +"True if the tool altered vault state on this call; false if it was a no-op."
    • addedOutput schema / properties / summary / description
      Added value: +"Short human-readable summary of what happened."
    • addedOutput schema / properties / target / description
      Added value: +"The path or identifier the tool acted on."
  4. First observedv0.1.0

TDQS

A4.7/5.0
Behavior5/5

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

Beyond the annotations (destructiveHint=true, idempotentHint=true), the description discloses critical behaviors: it overwrites/replaces existing content at the destination, fails when the source does not exist, and rewrites wiki/markdown links vault-wide when updateLinks is true. It also explains the vaultPath override semantics. This adds substantial operational detail that annotations alone do not convey.

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 tight and front-loaded: the first sentence states the core purpose, then details about kind, updateLinks, destructiveness, failure condition, and vault selection follow. Every sentence adds value with no fluff or repetition. It is well-structured for an agent to quickly grasp the essential information.

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

Completeness5/5

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

Given the tool's complexity (moving files/folders with link rewriting and destructive behavior) and the presence of an output schema, the description covers all necessary aspects: what it moves, how it handles links, destructive consequences, failure conditions, and vault selection. Nothing essential is missing for an agent to call it correctly.

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

Parameters4/5

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

Schema description coverage is 100% (each parameter has a description), so the baseline is 3. The description goes further by explaining the default behavior of updateLinks (true) and how vaultPath overrides the session-active vault, which is not fully captured in the schema. This added context justifies a 4.

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 clearly states the verb ('Move') and resource ('a note or folder to a new path'), and immediately distinguishes the two kinds ('note' vs 'folder' with 'moves every note beneath it'). It also explains link rewriting, making it distinct from sibling tools like notes.delete or notes.create. No tautology; the description adds specificity beyond the title.

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

Usage Guidelines4/5

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

The description provides clear context: it operates on the session-active vault unless vaultPath is passed, and it is destructive. However, it does not explicitly name alternative tools or state conditions like 'use notes.move instead of notes.delete when you need to relocate', so the 'when not to use' is only implied. The vault selection guidance is helpful, but the lack of explicit exclusions prevents a 5.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/bezata/kObsidian'

If you have feedback or need assistance with the MCP directory API, please join our Discord server