Skip to main content
Glama
indie-geeker

obsidian-mcp-server

by indie-geeker

list_notes_sorted

List notes sorted by creation time, modification time, size, or name. Supports order, folder path, recursion, and metadata inclusion.

Instructions

List notes sorted by creation time, modification time, or size

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathNoFolder path to list (empty for root)
limitNoMaximum number of notes to return (default: no limit)
orderNoSort order: 'asc' (ascending/oldest first) or 'desc' (descending/newest first)desc
sortByNoSort by: 'created' (creation time), 'modified' (modification time), 'size' (file size), or 'name' (alphabetical)modified
recursiveNoInclude subfolders
includeMetadataNoInclude metadata (size, timestamps) for each note

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

C2.7/5.0
Behavior1/5

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

No annotations provided, so the description carries the full burden. It says nothing about permissions required, pagination, default behavior, or return format. For a list tool with zero behavioral disclosure, this is inadequate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, efficient sentence that is front-loaded and wastes no words. However, it is under-specified rather than richly concise, so it doesn't reach 5.

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 6-parameter list tool with no annotations and no output schema, the description should mention default sort behavior, recursion default, or return shape. It omits all of that, leaving significant gaps.

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 coverage is 100%, so all six parameters, their enums, and defaults are fully documented in the schema. The description adds nothing beyond what the schema already provides. Baseline 3 is correct when the schema does all the heavy lifting.

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?

Specific verb and resource ('List notes') with the sorting capability stated. It doesn't explicitly differentiate from the sibling list_notes, though the 'sorted' name and description imply it. Clear but lacks sibling differentiation.

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 on when to use this versus list_notes, search_notes, or get_note_metadata. The agent is left to infer usage from the name and description.

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