Enables interaction with Evernote, allowing for creating, searching, reading, and managing notes. Provides tools to search notes, retrieve note content, create new notes with title and tags, update existing notes, and create new notebooks for organization.
📝 Evernote MCP Server
A Model Context Protocol (MCP) server that enables AI assistants like Claude to interact with Evernote, allowing them to create, search, read, and manage notes seamlessly through natural language.
🤖 Transform your Evernote into Claude's brain! This MCP server bridges the gap between AI and your personal knowledge base.
✨ Features
🔧 AI Tools Available
search_notes
- Search through your Evernote notes with advanced queriesget_note_content
- Retrieve full content of specific notescreate_note
- Create new notes with title, content, and tagsupdate_note
- Modify existing notescreate_notebook
- Create new notebooks for organizationconfigure_evernote
- Set up authentication with your Evernote account
📋 Live Resources
notebooks://list
- Real-time access to your notebook structuretags://list
- Available tags for organizationrecent-notes://list
- Recently modified notes
🚀 Quick Installation
Prerequisites
- Python 3.8+ (if not installed, see Python Installation Guide below)
- Git (for cloning the repository)
Option 1: One-Click Install (Recommended)
Option 2: Manual Setup
Python Installation
If you don't have Python installed:
Windows:
- Download Python from python.org
- IMPORTANT: Check "Add Python to PATH" during installation
- Restart your terminal/PowerShell after installation
- Test:
python --version
macOS:
Linux:
🔑 Get Your Evernote API Key
IMPORTANT: You need an Evernote Developer Token to use this MCP server.
Step-by-Step Guide:
- Visit Evernote Developer Portal
- Request API Access by filling out their contact form:
- Wait for Approval (usually 1-5 business days)
- You'll receive via email:
- Consumer Key
- Consumer Secret
- Developer Token ← This is what you need!
⚙️ Configuration with Claude Desktop
Step 1: Locate Claude Desktop Config File
Find your Claude Desktop configuration file:
- Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Linux:
~/.config/claude/claude_desktop_config.json
Step 2: Add MCP Server Configuration
Add this to your claude_desktop_config.json
file:
Replace /full/path/to/Evernote-MCP/
with the actual path where you cloned this repository!
Step 3: Restart Claude Desktop
Close and reopen Claude Desktop to load the new MCP server.
🔐 Setting Up Your API Key
Method 1: Through Claude (Recommended)
- Open Claude Desktop
- Say: "Configure Evernote with my developer token: YOUR_DEVELOPER_TOKEN_HERE"
- Claude will respond with confirmation that Evernote is configured
Method 2: Environment Variables (Advanced)
Create a .env
file in the project directory:
🚨 Security Note: Never commit your actual API tokens to Git! The .env
file is already in .gitignore
.
💡 How to Use with Claude
Once configured, you can interact with your Evernote through natural language in Claude:
📝 Creating Notes
🔍 Searching Notes
📖 Reading Content
🗂️ Organization
🔄 Smart Updates
🧪 Testing Your Installation
Quick Test
Run the built-in test script:
Pre-flight Check:
This will test:
- ✅ Python dependencies
- ✅ MCP server functionality
- ✅ Claude Desktop configuration
- ✅ Evernote API connection (if you provide your token)
Automated Testing (for CI/CD)
The test script can be run non-interactively, perfect for automated workflows:
The script will exit with a non-zero status code if any tests fail.
Manual Verification
- Check Claude Desktop - Look for "🔧 Evernote" in Claude's available tools
- Test Configuration - Say: "Configure Evernote with my token: YOUR_TOKEN"
- Test Search - Say: "Search my Evernote for any note"
🔧 Architecture
Component Breakdown:
- Claude Desktop - The MCP client that sends requests
- Evernote MCP Server - This application that translates MCP calls to Evernote API
- Evernote Service - The actual Evernote cloud service
🔐 Security & Authentication
Developer Tokens
- Used for development and personal use
- Tied to a specific Evernote account
- Access level determined when requesting API key
OAuth (Future Enhancement)
- For production applications
- Allows users to authorize access without sharing credentials
- More secure for shared or distributed applications
Environment Variables
For enhanced security, you can set environment variables:
🛠️ Development
Project Structure
Key Classes
EvernoteClient
- Handles Evernote API communicationFastMCP
- The MCP server framework- Tools & Resources - MCP endpoints for AI interaction
Testing
🔍 Troubleshooting
❌ "Evernote client not initialized"
Solution:
- Run: "Configure Evernote with my developer token: YOUR_TOKEN" in Claude
- Verify your developer token is correct
- Check if you're using sandbox vs production environment
❌ Claude doesn't see the Evernote tools
Solution:
- Restart Claude Desktop completely
- Check the path in
claude_desktop_config.json
is correct - Ensure Python can run:
python evernote_mcp_server.py
❌ "Failed to create note"
Solution:
- Ensure your API key has create permissions (Full Access recommended)
- Check that the specified notebook exists
- Verify your token hasn't expired
❌ Connection/Authentication Issues
Solution:
- Test your token:
python test_server.py
- Confirm internet connectivity
- Check if corporate firewall blocks Evernote API
- Try sandbox environment first:
EVERNOTE_USE_SANDBOX=true
❌ Import/Module Errors
Solution:
💡 Still Having Issues?
- Run the test script:
python test_server.py
- Check the logs in Claude Desktop's developer console
- Create an issue on this GitHub repository with:
- Your operating system
- Python version
- Error messages
- Steps you've tried
🚦 API Limits
Evernote has rate limits on API usage:
- Basic Access: Limited operations per hour
- Full Access: Higher rate limits
- Production: Different limits than sandbox
The server includes error handling for rate limit responses.
🚀 Installing from GitHub (For Users)
If someone shared this repository with you, here's how to get it running:
Quick Setup Commands
What the setup does:
- ✅ Installs all Python dependencies
- ✅ Configures Claude Desktop automatically
- ✅ Guides you through getting your Evernote API key
- ✅ Tests everything works correctly
🛣️ Roadmap
- OAuth Support - More secure authentication
- Web Clipper Integration - Save web pages via Claude
- Shared Notebooks - Collaborate through AI
- Advanced Search - Saved searches and filters
- File Attachments - Handle images and documents
- Multi-Account - Support multiple Evernote accounts
🤝 Contributing
We welcome contributions! Here's how:
For Developers:
- Fork this repository
- Create a feature branch:
git checkout -b feature/amazing-feature
- Commit your changes:
git commit -m 'Add amazing feature'
- Push to the branch:
git push origin feature/amazing-feature
- Open a Pull Request
For Users:
- 🐛 Report bugs via GitHub Issues
- 💡 Suggest features you'd like to see
- 📚 Improve documentation
- ⭐ Star this repo if you find it useful!
📊 Project Stats
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.
🔗 Related Projects & Links
- 🔗 Model Context Protocol Documentation
- 🔗 Evernote Developer Documentation
- 🔗 Claude Desktop
- 🔗 MCP Server Registry
⚠️ Important Disclaimers
- Unofficial Project: Not affiliated with or endorsed by Evernote Corporation
- Security: Keep your API tokens secure and never commit them to public repositories
- Compliance: Ensure you follow Evernote's Terms of Service and API License Agreement
- Rate Limits: Respect Evernote's API rate limits to avoid service interruption
🎉 Success Stories
"This MCP server transformed how I use my Evernote. Now Claude can help me organize 10 years of notes effortlessly!" - Happy User
Made with ❤️ for the AI community
Star ⭐ this repo if it helps you! Happy Note-Taking with AI! 🤖📚
🛠️ Developer Mode
For advanced users and developers, a Developer Mode can be enabled to access extra debugging tools and verbose logging.
How to Enable:
Set the DEV_MODE
environment variable to true
. This can be done in your claude_desktop_config.json
or directly in your shell.
Example claude_desktop_config.json
:
Developer Features
- 📝 Verbose Logging: See detailed API requests and responses (including payloads) in the server console.
- 🛡️ Dry Run Mode: Add
dry_run=True
tocreate_note
orupdate_note
tool calls to simulate the action without modifying your data. This is great for testing prompts. - 🔧 New Dev Tools:
dev_get_config
: Returns the current server configuration (token status, environment, etc.).dev_clear_config
: Resets the Evernote authentication, useful for switching accounts.dev_api_test
: Performs a live API test to check connectivity and permissions.
🧪 Testing Your Installation
Quick Test
Run the built-in test script:
This will test:
- ✅ Python dependencies
- ✅ MCP server functionality
- ✅ Claude Desktop configuration
- ✅ Evernote API connection (if you provide your token)
Automated Testing (for CI/CD)
The test script can be run non-interactively, perfect for automated workflows:
The script will exit with a non-zero status code if any tests fail.
Manual Verification
- Check Claude Desktop - Look for "🔧 Evernote" in Claude's available tools
- Test Configuration - Say: "Configure Evernote with my token: YOUR_TOKEN"
- Test Search - Say: "Search my Evernote for any note"
This server cannot be installed
hybrid server
The server is able to function both locally and remotely, depending on the configuration or use case.
A Model Context Protocol server that allows AI assistants like Claude to interact with Evernote, enabling them to create, search, read, and manage notes through natural language.
- ✨ Features
- 🚀 Quick Installation
- 🔑 Get Your Evernote API Key
- ⚙️ Configuration with Claude Desktop
- 🔐 Setting Up Your API Key
- 💡 How to Use with Claude
- 🧪 Testing Your Installation
- 🔧 Architecture
- 🔐 Security & Authentication
- 🛠️ Development
- 🔍 Troubleshooting
- 🚦 API Limits
- 🚀 Installing from GitHub (For Users)
- 🛣️ Roadmap
- 🤝 Contributing
- 📊 Project Stats
- 📄 License
- 🔗 Related Projects & Links
- ⚠️ Important Disclaimers
- 🎉 Success Stories
- 🛠️ Developer Mode
- 🧪 Testing Your Installation
Related MCP Servers
- AsecurityFlicenseAqualityA Model Context Protocol server that connects Claude and other AI assistants to your Notion workspace, allowing AIs to interact with databases, pages, and blocks.Last updated -12010JavaScript
- -securityAlicense-qualityA Model Context Protocol server that allows AI assistants like Claude to read notes from the Bear note-taking app in a safe, read-only mode.Last updated -2JavaScriptMIT License
- AsecurityFlicenseAqualityA Model Context Protocol server that connects AI assistants like Claude to Notion workspaces, enabling them to view, search, create, and update Notion databases, pages, and content blocks.Last updated -12194JavaScript
- AsecurityAlicenseAqualityA Model Context Protocol server that enables AI assistants like Claude to interact with Outline document services, supporting document searching, reading, creation, editing, and comment management.Last updated -2519PythonMIT License