MCP server for reading Simplenote notes across macOS, Linux, and Windows
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Simplenote MCP.
tagCallable MCP tool function
limitCallable MCP tool function
include_deletedCallable MCP tool function
queryCallable MCP tool function
idCallable MCP tool function
contentCallable MCP tool function
An MCP (Model Context Protocol) server that gives any MCP-compatible AI tool access to your Simplenote data β read by default, with opt-in write tools (create, update, trash, restore, revert) when you run simplenote-mcp setup with write mode enabled.
On macOS, it can read directly from the local Simplenote desktop app's Core Data store β fully offline, no auth. On Linux and Windows (and on macOS without the desktop app), it talks to the Simperium HTTP API after a one-time simplenote-mcp setup.
Works with Claude Desktop, Claude Code, Cursor, VS Code (Copilot), Zed, Cline, Windsurf, and anything else that speaks MCP.
Run setup once:
On macOS with the Simplenote desktop app installed and synced, setup detects the local database and asks whether to use it. Accepting that option is fully offline and read-only. On Linux, Windows, or macOS without the desktop app, setup prompts for your Simplenote email, sends an auth code, then asks for the code and whether to enable write mode.
Then register the server with your MCP client.
Claude Code:
Codex:
For Claude Desktop, Cursor, VS Code, Zed, Cline, and Windsurf, see Configuration below β these clients are configured by editing a JSON file rather than a CLI command.
Restart the client and ask it to list your tags.
simplenote-mcp setup once)Most users don't need to install anything manually β npx -y @automattic/simplenote-mcp in the MCP config does it on first use.
If you prefer a global install (faster startup, no cold-cache download on first use):
Then reference simplenote-mcp directly as the command in your MCP config.
Run setup once to create config.json. Native macOS setup does not require Simplenote authentication; API setup does.
If a local macOS Simplenote database is detected, setup offers to use it and writes config.json with source: "local".
Otherwise, setup checks for an existing token in auth.json. If one is already stored, setup reuses it and only asks whether to enable write mode. If no token is stored, setup prompts for your Simplenote email, sends a magic-link email containing a short auth code, prompts for the code, and then asks whether to enable write mode. On success, it writes config.json and stores the token with mode 0600 in auth.json.
| Platform | Path |
|---|---|
| macOS | ~/Library/Application Support/simplenote-mcp/auth.json |
| Linux | $XDG_CONFIG_HOME/simplenote-mcp/auth.json (default ~/.config/simplenote-mcp/auth.json) |
| Windows | %APPDATA%\simplenote-mcp\auth.json |
config.json and telemetry.json live in the same simplenote-mcp config directory.
To remove the stored token:
Skip auth.json by exporting the token directly:
The env var bypasses auth.json.
SIMPLENOTE_TOKEN does not bypass config.json; the server still needs config to know whether to use the local store or the API provider. For headless environments, create config.json in the same platform-specific config directory listed above:
Set writeMode to true only when you want write tools exposed.
Magic-link tokens appear sticky per user (requesting a new code often returns the same token until invalidated server-side). No expiry has been observed in normal use; treat any 401 from the Simperium API as "remove the old token and run setup again." There is no automatic refresh β magic-link auth requires user interaction. The authentication endpoint is rate-limited (repeated failures lock the IP out for ~10 minutes), so don't script repeated attempts.
Clients with a CLI (Claude Code, Codex) can register the server with one command β see below. Everything else is JSON: all MCP clients converge on the same { command, args, env } shape, and only the config file location and the top-level key (mcpServers vs. servers vs. context_servers) differ between them.
Recommended:
Or edit ~/.claude.json / project .mcp.json with the same JSON shape as Claude Desktop below.
Recommended:
Or edit ~/.codex/config.toml directly:
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows).
Run npx -y @automattic/simplenote-mcp setup once in a terminal before starting the client.
Restart Claude Desktop to pick up config changes. See Windows notes below for Windows-specific quirks.
~/.cursor/mcp.json (global) or .cursor/mcp.json (per-project). Same JSON shape as Claude Desktop.
User config via Command Palette β "MCP: Open User Configuration", or per-project .vscode/mcp.json. Note: VS Code uses servers at the top level, not mcpServers.
In Zed's settings.json:
Zed uses a different schema β context_servers with a nested command object.
Open the Cline MCP Servers panel β edit cline_mcp_settings.json. Same JSON shape as Claude Desktop (mcpServers top-level key).
~/.codeium/windsurf/mcp_config.json. Same JSON shape as Claude Desktop.
If your local Simplenote data is not at the default path:
Cmd+Shift+G, paste ~/Library/Group Containers/com.automattic.SimplenoteMac (typically prefixed like PZYM8XX95Q.)Data/Simplenote.storedataThen pass --path:
--path always forces the native provider, even if a token is configured.
-h, --help β print usage and exit.-V, --version β print version and exit.Unknown flags and unexpected positional arguments are rejected. This prevents silent typos like --paht from being ignored and falling back to whatever provider is configured in config.json.
Simplenote MCP sends anonymous usage events to Automattic. A random UUID is stored in telemetry.json under the same config directory as config.json and is sent as _ui with _ut=simplenote:local_uuid.
Tracked events are limited to setup choices (type, OS family, write mode, and auth method for API setup) and tool calls (tool, provider, success/failure). Note IDs, note content, tags, search queries, Simplenote account details, and tokens are never sent.
To opt out for one run, set:
To persistently opt out:
When running from a local checkout after building, node server.js disable-telemetry works too.
The server chooses a data source from config.json, except when --path is provided:
--path <file> β forces the native macOS provider against the given store filesource: "local" β uses the default macOS Simplenote store, read-onlysource: "api" plus auth.json or SIMPLENOTE_TOKEN β uses the Simperium API providersimplenote-mcp setup messageRun simplenote-mcp setup to create or replace the config. A token alone is not enough to select the API provider.
The basic read tools are available for whichever provider is configured. Native macOS mode is local and read-only. Write tools and version-history tools require the Simperium API provider; in the current server they are exposed when API write mode is enabled.
List all tags in your Simplenote account.
Parameters: None
Returns: Array of {name, index} sorted by index
List recent notes, optionally filtered by tag.
Parameters:
tag (string, optional) β filter by tag namelimit (number, optional, default: 20, max: 100) β max notes to returninclude_deleted (boolean, optional, default: false) β include trashed notesReturns: Array of {id, title, tags, pinned, modified, deleted} sorted by pinned status then modification date
Search notes by content, title, or tags.
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/simplenote-mcp)<a href="https://allmcps.com/mcp/simplenote-mcp"><img src="https://allmcps.com/api/badge/simplenote-mcp?style=directory" alt="Simplenote MCP on AllMCPs" /></a>