evernote-mcp
Provides tools for searching, reading, creating, and updating notes in a live Evernote account through the Evernote API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@evernote-mcpsearch my notes for 'project ideas'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
evernote-mcp
A self-hosted Evernote MCP server, native to the 2026-07-28 stateless spec.
Point any MCP client at your own machine and it can search, read, create and update notes in your live Evernote account. Your notes never pass through anyone else's server: the only two parties are your client and Evernote.
Built on the official mcp Python SDK 2.0. The 2026-07-28 spec dropped the
initialize handshake and session state, so this server answers a single
stateless POST per call. Clients still on the old spec keep working through
the SDK's fallback path, verified against mcp 1.27.
Tools
Tool | What it does |
| Every notebook with guid, name, stack, default flag |
| Evernote's own search grammar, passed through unmodified |
| One note by guid, body converted from ENML to markdown |
| Title plus markdown body, optional notebook |
| Replace a note's title, body, or both, by guid |
Deliberately absent in v1: attachments, tags, sync, and anything that deletes. No tool in this server can remove a note.
search_notes takes Evernote query strings verbatim, so
notebook:Recipes intitle:pasta updated:day-7 -tag:archived works exactly as
it does in the Evernote app. An empty query returns the most recently updated
notes.
Related MCP server: evernote-mcp-server
Setup
Requires Python 3.11+ and uv.
git clone https://github.com/jayzuccarelli/evernote-mcp
cd evernote-mcp
make sync
cp .env.example .env1. Get an Evernote token
You need a JSON file with at least token and noteStoreUrl:
{
"token": "S=s123:U=...",
"noteStoreUrl": "https://www.evernote.com/shard/s123/notestore"
}Two ways to produce it:
Developer token. Evernote issues these from your account settings for personal use. Pair it with the note store URL for your shard.
OAuth. Run the standard Evernote OAuth flow with your own consumer key. The access token response carries
edam_webApiUrlPrefix; the note store URL is that prefix withnotestoreappended.
Save the file as ~/.evernote-token.json, or point EVERNOTE_TOKEN_FILE
somewhere else.
2. Set a bearer token
EVERNOTE_MCP_TOKEN is the secret that guards your server. It is unrelated to
the Evernote credential.
uv run python -c "import secrets; print(secrets.token_urlsafe(32))"Put it in .env. Leave it unset and the server accepts unauthenticated calls,
which is only safe bound to localhost.
3. Run
make runThe server listens on http://127.0.0.1:3402/mcp. Add it to a client:
claude mcp add --transport http evernote http://127.0.0.1:3402/mcp \
--header "Authorization: Bearer $EVERNOTE_MCP_TOKEN"Exposing it beyond localhost
Put it behind a reverse proxy that terminates TLS. With Tailscale Funnel:
tailscale funnel --bg --set-path /evernote 3402Then set both of these in .env:
PUBLIC_URL=https://your-host.ts.net/evernote
TRUST_PROXY=truePUBLIC_URL is what the server advertises in its RFC 9728 protected resource
metadata, so OAuth-aware clients discover the right issuer. TRUST_PROXY
relaxes the DNS-rebinding Host header check, which a proxy forwarding a public
hostname would otherwise trip. Bearer auth still gates every request.
Markdown and ENML
Evernote stores notes as ENML, an XHTML subset. This server converts on the way out and back on the way in, so tools speak markdown.
The conversion is not lossless. Headings, bullets, checkboxes, links, bold,
italic and paragraphs round trip. Tables, images, inline styles and colours do
not. Attachments show up as [attachment: image/png] placeholders on read and
are dropped on write.
update_note replaces the body wholesale. Read first, edit, then write back if
you want to preserve anything.
Development
make check # ruff lint + format check, then import and tool-registry smoke testmake check runs against tests/fake-token.json, so it needs no Evernote
account and touches no network.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jayzuccarelli/evernote-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server