evernote-mcp-server

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
  1. list_evernote_notebooks

    List all notebooks

  2. list_evernote_notes

    List all notes in a notebook

  3. read_evernote_note

    Read a note content

  4. create_evernote_note

    Create a note

  5. 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 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

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"
    }
  }
}