Evernote MCP Server
Enables Claude to interact with Evernote notes and notebooks, supporting full-text search, note operations (create, read, update, delete), and multiple output formats for both International Evernote and Yinxiang Biji.
README
Evernote MCP Server
Model Context Protocol (MCP) server for Evernote - enables Claude Code to interact with your Evernote notes.
Supports both International Evernote and Yinxiang Biji (印象笔记)
Features
- Notebook operations (create, update, delete, list)
- Note operations (create, read, update, delete, copy, move)
- Full-text search using Evernote's search syntax
- Multiple output formats (ENML, text, markdown, JSON)
Installation
npm install -g @anthropic/claude-code
uvx evernote-mcp
Configuration
1. Get Evernote Developer Token
International Evernote: https://evernote.com/api/DeveloperToken.action
Yinxiang Biji (印象笔记): https://app.yinxiang.com/api/DeveloperToken.action
2. Configure Claude Code
Edit ~/.config/claude-code/config.json:
For International Evernote:
{
"mcpServers": {
"evernote": {
"command": "uvx",
"args": ["evernote-mcp"],
"env": {
"EVERNOTE_AUTH_TOKEN": "your_token_here",
"EVERNOTE_BACKEND": "evernote"
}
}
}
}
For Yinxiang Biji (印象笔记):
{
"mcpServers": {
"evernote": {
"command": "uvx",
"args": ["evernote-mcp"],
"env": {
"EVERNOTE_AUTH_TOKEN": "your_token_here",
"EVERNOTE_BACKEND": "china"
}
}
}
}
Usage Examples
claude-code
User: Create a note in my "Project Notes" notebook summarizing the current TODO items from src/todo.py
Claude: I'll read the TODO file and create a note for you.
[Creates note with extracted TODOs]
User: Search my Evernote for notes about "API design" and summarize the key points
Claude: Let me search for those notes and analyze them.
[Searches and summarizes findings]
User: Create a notebook called "Code Reviews" and add a note template
Claude: I'll set that up for you.
[Creates notebook and template note]
Environment Variables
| Variable | Default | Description |
|---|---|---|
EVERNOTE_AUTH_TOKEN |
- | Your developer token (required) |
EVERNOTE_BACKEND |
evernote |
evernote (International) or china (印象笔记) |
Available Tools
Notebooks
create_notebook(name, stack)- Create notebooklist_notebooks()- List all notebooksget_notebook(guid)- Get notebook detailsupdate_notebook(guid, name, stack)- Update notebookdelete_notebook(guid)- Delete notebook
Notes
create_note(title, content, notebook_guid, tags)- Create noteget_note(guid, output_format)- Get note (enml/text/markdown/json)update_note(guid, title, content)- Update notedelete_note(guid)- Move to trashcopy_note(guid, target_notebook_guid)- Copy notemove_note(guid, target_notebook_guid)- Move notelist_notes(notebook_guid, limit)- List notes
Search
search_notes(query, notebook_guid)- Search noteslist_tags()- List all tags
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.