MCP Notes Server MCP Server

A Model Context Protocol (MCP) server implementation providing persistent note management created with Python SDK.

Local serverstdioPython

What is the MCP Notes Server MCP server?

If you already use MCP Notes Server, the mcp notes server mcp server is the piece that lets your assistant work with it directly. A Model Context Protocol (MCP) server implementation providing persistent note management created with Python SDK.

What the server does

  • Create, read, update, and delete notes
  • Persistent storage using JSON
  • Timestamp tracking for creation and modifications
  • Note summarization via prompts
  • Resource-based access using note:// URI scheme

Installation

@smithery/cli on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • add-note — Create a new note
  • list-all-notes — Display all stored notes
  • update-note — Modify an existing note
  • delete-note — Remove a note

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Where it fits

Plenty of planning and project tracking servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MCP Notes Server's toolset — add-note, list-all-notes, update-note and 1 more — is a fair guide to whether it matches your workflow. It is maintained by truaxki; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
add-noteCreate a new note
list-all-notesDisplay all stored notes
update-noteModify an existing note
delete-noteRemove a note

How to install the MCP Notes Server MCP server

{
  "mcpServers": {
    "notes-truaxki": {
      "command": "npx",
      "args": ["-y", "@smithery/cli"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use MCP Notes Server to add-note.
  • Use MCP Notes Server to list-all-notes.
  • Use MCP Notes Server to update-note.

Frequently asked questions

Notes are stored in a local `notes_storage.json` file. Each note includes its content, creation timestamp, and last modification timestamp.