list_uncategorized_notes
Retrieve Markdown files from the main Notes folder to identify unorganized documents for categorization and management.
Instructions
List all Markdown (.md) files directly inside /Notes (not in subfolders).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- nextcloud_notes_mcp/server.py:60-67 (handler)The main handler function for the 'list_uncategorized_notes' tool. It lists Markdown files directly in the /Notes directory using the WebDAV client. The @mcp.tool() decorator registers it as an MCP tool.@mcp.tool() def list_uncategorized_notes() -> List[str]: """ List all Markdown (.md) files directly inside /Notes (not in subfolders). """ items = client.list("/Notes") return [f for f in items if f.endswith('.md')]