Evernote

Manage notes, notebooks, and tags via Evernote API. Create, search, and organize notes programmatically.

modbender Updated 12 repo stars

File contents

Evernote

Note-taking and organization.

Environment

export EVERNOTE_ACCESS_TOKEN="xxxxxxxxxx"
export EVERNOTE_BASE="https://www.evernote.com/shard/s1/notestore"

List Notebooks

curl "$EVERNOTE_BASE/listNotebooks" -H "Authorization: Bearer $EVERNOTE_ACCESS_TOKEN"

Create Note

curl -X POST "$EVERNOTE_BASE/createNote" \
  -H "Authorization: Bearer $EVERNOTE_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"title": "New Note", "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?><!DOCTYPE en-note SYSTEM \"http://xml.evernote.com/pub/enml2.dtd\"><en-note>Hello World</en-note>"}'

Links

modbender/skill-library-mcp/tree/main/data/evernote commit 8ffb1c5aa0

Frequently asked questions

npx skillmds@latest add modbender/evernote