MCP Notes

log

Generate or update daily log files in MCP Notes, add notes, and tag content for better organization and searchability in your personal knowledge system.

Instructions

Create or update today's daily log file. Optionally add notes to the log.

Input Schema

NameRequiredDescriptionDefault
notesYes
tagsYesTags must follow these rules: - Can contain letters, numbers, underscore (_), hyphen (-), and forward slash (/) - Must contain at least one non-numerical character - Cannot contain spaces (use camelCase, PascalCase, snake_case, or kebab-case) - Are case-insensitive (stored as lowercase) Analyze the note's content and identify key themes, concepts, and categories that connect it to other notes. Consider: - Core topics and themes present in the note - Broader domains or areas of knowledge - Types of information (decisions, ideas, research, etc.) - Projects or contexts that might want to reference this later Do not force tags - only add ones that naturally emerge from the content and would help build meaningful connections between notes.

Input Schema (JSON Schema)

{ "properties": { "notes": { "type": "string" }, "tags": { "description": "Tags must follow these rules:\n- Can contain letters, numbers, underscore (_), hyphen (-), and forward slash (/)\n- Must contain at least one non-numerical character\n- Cannot contain spaces (use camelCase, PascalCase, snake_case, or kebab-case)\n- Are case-insensitive (stored as lowercase)\n\n Analyze the note's content and identify key themes, concepts, and categories that connect it to other notes.\n Consider:\n - Core topics and themes present in the note\n - Broader domains or areas of knowledge\n - Types of information (decisions, ideas, research, etc.)\n - Projects or contexts that might want to reference this later\n Do not force tags - only add ones that naturally emerge from the content and would help build meaningful connections between notes.", "items": { "type": "string" }, "type": "array" } }, "required": [ "notes", "tags" ], "type": "object" }
ID: saavkeo89k