notes-mcp-demo
Verified Safeby themeselection
Overview
A Model Context Protocol server for managing notes, offering tools for CRUD operations, a markdown snapshot, and an LLM summarization prompt.
Installation
node build/index.jsSecurity Notes
The server operates locally via standard I/O (stdio), significantly reducing network attack surface. Input validation is performed using Zod schemas for all tool inputs. Data is stored in local files under the user's home directory (`~/.notes-mcp/data/notes.json`). No sensitive hardcoded credentials, use of 'eval', or other obviously malicious patterns were detected. The local file storage could be a concern if highly sensitive data is stored, but it's appropriate for a 'notes' application.
Similar Servers
mcp-obsidian
Enables LLMs (like Claude) to programmatically interact with an Obsidian vault through the Local REST API plugin.
blz
Provides fast, local documentation search and retrieval for AI agents, using llms.txt files for line-accurate citations.
obsidian-http-mcp
Facilitates AI agents, such as Claude Code, to manage Obsidian notes by providing an HTTP-native Model Context Protocol (MCP) server, bypassing stdio transport bugs.
mcp-notes
A local server for managing, searching, and organizing personal notes with structured tags and markdown support, integrated with Claude Desktop and a web interface.