yasuhiroki/evernote-mcp-server
3.3
If you are the rightful owner of evernote-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The Evernote MCP Server is an unofficial server that integrates with Evernote to provide various functionalities through the Model Context Protocol (MCP).
Tools
list_evernote_notebooks
List all notebooks
list_evernote_notes
List all notes in a notebook
read_evernote_note
Read a note content
create_evernote_note
Create a note
update_evernote_note
Update content of a note
evernote-mcp-server
MCP Server for Evernote (unofficial)
Feature
Provides the following MCP tools features:
list_evernote_notebooks
: List all notebookslist_evernote_notes
: List all notes in a notebookread_evernote_note
: Read a note contentcreate_evernote_note
: Create a noteupdate_evernote_note
: Update content of a note
Configuration
Prerequisite
Evernote API token is required. You can get it from Evernote Developer Tokens.
Setup mcp settings
for example, create mcp.json
in the root directory of this repository.
{
"evernote": {
"command": "npx",
"args": [
"-y",
"github:yasuhiroki/evernote-mcp-server",
],
"env": {
"EVERNOTE_API_TOKEN": "YOUR EVERNOTE API TOKEN"
}
}
}