loading…
Search for a command to run...
loading…
A simple server for saving, listing, and searching notes persisted to a local JSON file. It enables users to manage their personal notes using natural language
A simple server for saving, listing, and searching notes persisted to a local JSON file. It enables users to manage their personal notes using natural language via the Model Context Protocol.
A simple MCP (Model Context Protocol) server for saving, listing, and searching notes. Built with the MCP SDK and persists notes to a local JSON file.
npm install
npm start
Edit your Claude Desktop config file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"notes": {
"command": "node",
"args": ["/absolute/path/to/mcpServer/server.js"]
}
}
}
Restart Claude Desktop.
| Tool | What it does |
|---|---|
add_note |
Save a new note with a title and content |
list_notes |
List all saved notes |
search_notes |
Search notes by keyword |
Add a note titled "Meeting" with content "Discuss Q3 roadmap on Friday"
List all my notes
Search my notes for "roadmap"
Notes are saved to ./notes.json — a plain JSON file you can open, edit, or back up any time.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"notes-mcp-server": {
"command": "npx",
"args": []
}
}
}