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
5
Resources
0
Prompts
0

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
  • read_evernote_notes: Read multiple note contents
  • 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"
    }
  }
}