Evernote MCP Server
Connects Claude Desktop to Evernote, enabling you to list notebooks/notes and create new notes directly from conversations.
README
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
Setup
1. Get Evernote API Credentials
- Go to Evernote Developer Portal
- 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 .env
Edit .env:
EVERNOTE_ACCESS_TOKEN=your-access-token-here
EVERNOTE_ENVIRONMENT=production # or "sandbox" for testing
EVERNOTE_USE_MOCK=false
3. 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.server
Testing with MCP Inspector
EVERNOTE_USE_MOCK=true mcp dev src/evernote_mcp/server.py
Running Tests
pip install -e ".[dev]"
pytest
Usage 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.toml
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.
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.
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.
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.