# Evernote

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

- Skill: `modbender/evernote` (Agent Skill)
- Install (CLI): `npx skillmds@latest add modbender/evernote`
- Raw SKILL.md: https://api.skillmd.com/api/skills/modbender/evernote/raw
- Safety review: pending (external: skill-scanner WARNING, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: modbender (https://skillmd.com/u/modbender)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/modbender/evernote

---

# Evernote
Note-taking and organization.
## Environment
```bash
export EVERNOTE_ACCESS_TOKEN="xxxxxxxxxx"
export EVERNOTE_BASE="https://www.evernote.com/shard/s1/notestore"
```
## List Notebooks
```bash
curl "$EVERNOTE_BASE/listNotebooks" -H "Authorization: Bearer $EVERNOTE_ACCESS_TOKEN"
```
## Create Note
```bash
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
- Docs: https://dev.evernote.com

