Evernote MCP Server
Allows listing notebooks and notes, creating new notes with Markdown support, searching notes, and retrieving note contents from Evernote.
Click on "Deploy 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 MCP Serverlist my notebooks"
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 Server
An MCP (Model Context Protocol) server that connects Claude Desktop to Evernote, enabling you to list notebooks/notes and create new notes directly from conversations.
Features
list_notebooks — List all notebooks in your Evernote account
list_notes — List notes, optionally filtered by notebook
get_note — Get a specific note's content
create_note — Create a new note (supports Markdown)
search_notes — Search notes by query
Related MCP server: Evernote MCP Server
Setup
1. Get Evernote API Credentials
Request an API key
Complete OAuth flow to get an access token
2. Configure Environment
Copy .env.example to .env and fill in your credentials:
cp .env.example .envEdit .env:
EVERNOTE_ACCESS_TOKEN=your-access-token-here
EVERNOTE_ENVIRONMENT=production # or "sandbox" for testing
EVERNOTE_USE_MOCK=false3. Build Docker Image
docker build -t evernote-mcp .4. Configure Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"evernote": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "EVERNOTE_ACCESS_TOKEN",
"-e", "EVERNOTE_ENVIRONMENT",
"evernote-mcp"
],
"env": {
"EVERNOTE_ACCESS_TOKEN": "your-access-token-here",
"EVERNOTE_ENVIRONMENT": "production"
}
}
}
}5. Restart Claude Desktop
After configuring, restart Claude Desktop. You should see Evernote tools available.
Development
Testing with Mock Client
For development without Evernote credentials, use the mock client:
EVERNOTE_USE_MOCK=true python -m evernote_mcp.serverTesting with MCP Inspector
EVERNOTE_USE_MOCK=true mcp dev src/evernote_mcp/server.pyRunning Tests
pip install -e ".[dev]"
pytestUsage Examples
Once configured, you can ask Claude:
"List my Evernote notebooks"
"Show me notes in my Work notebook"
"Create a note titled 'Meeting Notes' with the following content..."
"Search for notes about 'project planning'"
Architecture
evernote-mcp/
├── src/evernote_mcp/
│ ├── server.py # MCP server (FastMCP)
│ ├── client_base.py # Abstract client interface
│ ├── client_mock.py # Mock client for testing
│ ├── client_evernote.py # Real Evernote API client
│ ├── models.py # Data models
│ └── enml.py # Markdown → ENML conversion
├── Dockerfile
└── pyproject.tomlLicense
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
- platform7nOAuthtech.p7n
Connect Claude to your Platform7n workspaces — chat, links, and tasks. One-click OAuth.
Notes and actions in one app. Let Claude or ChatGPT read and update them.
Your professional network in Claude — search contacts, log notes, and send warm intros.
Search, read, create and edit your Memol notes from Claude. Team note-taking with AI search.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables structured note-taking with markdown support, dynamic tagging system, advanced search capabilities, and markdown export functionality through natural language conversations in Claude Desktop.3GPL 3.0
- AlicenseNot gradedqualityCmaintenanceEnables 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.11MIT
- AlicenseAqualityAmaintenanceIntegrates Simplenote with Claude Desktop, allowing AI assistants to read, create, update, search, and manage your Simplenote notes as a memory backend or content source.919MIT
- AlicenseAqualityDmaintenanceConnects Claude Desktop to an Obsidian vault, enabling reading, searching, capturing ideas, and managing notes through natural language.214 npmMIT