MCPNotes
If you are the rightful owner of MCPNotes and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
MCP Notes Server is a note-taking application using the Model Context Protocol for AI-driven note management.
listNotes
Input: { tags?: string[] }, Output: Array of all notes, optionally filtered by tags.
getNote
Input: { id: string }, Output: A single note object matching the given ID, or a 'not found' message if no match exists.
writeNote
Input: { id: string, title: string, summary: string, tags: string[], content: string }, Output: A success confirmation message.
deleteNote
Input: { id: string }, Output: Deletion confirmation message.