The Evernote connector synchronizes notes from Evernote notebooks using the Evernote API (Thrift protocol).
Authentication
API Key — Developer token from Evernote's developer portal.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
| Notebook GUID | Input | No | Specific notebook to sync (default: all notebooks) |
How It Works
- Notebook Discovery — Lists all notebooks and their GUIDs
- Tag Resolution — Fetches all tags to build a tag name cache
- Note Listing — Uses
findNotesMetadatawith offset pagination - Content Fetching — Gets full note content including ENML→plain text conversion
- Content Deferred — Listing returns stubs; content fetched on demand
Document Format
ENML (Evernote Markup Language) is converted to plain text. Note metadata (tags, notebook, dates) is preserved.
Metadata Tags
| Tag | Type | Description |
|---|---|---|
| Tags | Text | Comma-separated note tags |
| Notebook | Text | Notebook containing the note |
| Created At | Date | Note creation date |
| Updated At | Date | Note last update date |
Limitations
- Uses the legacy Thrift-based Evernote API
- Developer tokens may have limited duration
- ENML→text conversion may lose some formatting

