|
| 1 | +--- |
| 2 | +title: Evernote |
| 3 | +description: Manage notes, notebooks, and tags in Evernote |
| 4 | +--- |
| 5 | + |
| 6 | +import { BlockInfoCard } from "@/components/ui/block-info-card" |
| 7 | + |
| 8 | +<BlockInfoCard |
| 9 | + type="evernote" |
| 10 | + color="#E0E0E0" |
| 11 | +/> |
| 12 | + |
| 13 | +## Usage Instructions |
| 14 | + |
| 15 | +Integrate with Evernote to manage notes, notebooks, and tags. Create, read, update, copy, search, and delete notes. Create and list notebooks and tags. |
| 16 | + |
| 17 | + |
| 18 | + |
| 19 | +## Tools |
| 20 | + |
| 21 | +### `evernote_copy_note` |
| 22 | + |
| 23 | +Copy a note to another notebook in Evernote |
| 24 | + |
| 25 | +#### Input |
| 26 | + |
| 27 | +| Parameter | Type | Required | Description | |
| 28 | +| --------- | ---- | -------- | ----------- | |
| 29 | +| `apiKey` | string | Yes | Evernote developer token | |
| 30 | +| `noteGuid` | string | Yes | GUID of the note to copy | |
| 31 | +| `toNotebookGuid` | string | Yes | GUID of the destination notebook | |
| 32 | + |
| 33 | +#### Output |
| 34 | + |
| 35 | +| Parameter | Type | Description | |
| 36 | +| --------- | ---- | ----------- | |
| 37 | +| `note` | object | The copied note metadata | |
| 38 | +| ↳ `guid` | string | New note GUID | |
| 39 | +| ↳ `title` | string | Note title | |
| 40 | +| ↳ `notebookGuid` | string | GUID of the destination notebook | |
| 41 | +| ↳ `created` | number | Creation timestamp in milliseconds | |
| 42 | +| ↳ `updated` | number | Last updated timestamp in milliseconds | |
| 43 | + |
| 44 | +### `evernote_create_note` |
| 45 | + |
| 46 | +Create a new note in Evernote |
| 47 | + |
| 48 | +#### Input |
| 49 | + |
| 50 | +| Parameter | Type | Required | Description | |
| 51 | +| --------- | ---- | -------- | ----------- | |
| 52 | +| `apiKey` | string | Yes | Evernote developer token | |
| 53 | +| `title` | string | Yes | Title of the note | |
| 54 | +| `content` | string | Yes | Content of the note \(plain text or ENML\) | |
| 55 | +| `notebookGuid` | string | No | GUID of the notebook to create the note in \(defaults to default notebook\) | |
| 56 | +| `tagNames` | string | No | Comma-separated list of tag names to apply | |
| 57 | + |
| 58 | +#### Output |
| 59 | + |
| 60 | +| Parameter | Type | Description | |
| 61 | +| --------- | ---- | ----------- | |
| 62 | +| `note` | object | The created note | |
| 63 | +| ↳ `guid` | string | Unique identifier of the note | |
| 64 | +| ↳ `title` | string | Title of the note | |
| 65 | +| ↳ `content` | string | ENML content of the note | |
| 66 | +| ↳ `notebookGuid` | string | GUID of the containing notebook | |
| 67 | +| ↳ `tagNames` | array | Tag names applied to the note | |
| 68 | +| ↳ `created` | number | Creation timestamp in milliseconds | |
| 69 | +| ↳ `updated` | number | Last updated timestamp in milliseconds | |
| 70 | + |
| 71 | +### `evernote_create_notebook` |
| 72 | + |
| 73 | +Create a new notebook in Evernote |
| 74 | + |
| 75 | +#### Input |
| 76 | + |
| 77 | +| Parameter | Type | Required | Description | |
| 78 | +| --------- | ---- | -------- | ----------- | |
| 79 | +| `apiKey` | string | Yes | Evernote developer token | |
| 80 | +| `name` | string | Yes | Name for the new notebook | |
| 81 | +| `stack` | string | No | Stack name to group the notebook under | |
| 82 | + |
| 83 | +#### Output |
| 84 | + |
| 85 | +| Parameter | Type | Description | |
| 86 | +| --------- | ---- | ----------- | |
| 87 | +| `notebook` | object | The created notebook | |
| 88 | +| ↳ `guid` | string | Notebook GUID | |
| 89 | +| ↳ `name` | string | Notebook name | |
| 90 | +| ↳ `defaultNotebook` | boolean | Whether this is the default notebook | |
| 91 | +| ↳ `serviceCreated` | number | Creation timestamp in milliseconds | |
| 92 | +| ↳ `serviceUpdated` | number | Last updated timestamp in milliseconds | |
| 93 | +| ↳ `stack` | string | Notebook stack name | |
| 94 | + |
| 95 | +### `evernote_create_tag` |
| 96 | + |
| 97 | +Create a new tag in Evernote |
| 98 | + |
| 99 | +#### Input |
| 100 | + |
| 101 | +| Parameter | Type | Required | Description | |
| 102 | +| --------- | ---- | -------- | ----------- | |
| 103 | +| `apiKey` | string | Yes | Evernote developer token | |
| 104 | +| `name` | string | Yes | Name for the new tag | |
| 105 | +| `parentGuid` | string | No | GUID of the parent tag for hierarchy | |
| 106 | + |
| 107 | +#### Output |
| 108 | + |
| 109 | +| Parameter | Type | Description | |
| 110 | +| --------- | ---- | ----------- | |
| 111 | +| `tag` | object | The created tag | |
| 112 | +| ↳ `guid` | string | Tag GUID | |
| 113 | +| ↳ `name` | string | Tag name | |
| 114 | +| ↳ `parentGuid` | string | Parent tag GUID | |
| 115 | +| ↳ `updateSequenceNum` | number | Update sequence number | |
| 116 | + |
| 117 | +### `evernote_delete_note` |
| 118 | + |
| 119 | +Move a note to the trash in Evernote |
| 120 | + |
| 121 | +#### Input |
| 122 | + |
| 123 | +| Parameter | Type | Required | Description | |
| 124 | +| --------- | ---- | -------- | ----------- | |
| 125 | +| `apiKey` | string | Yes | Evernote developer token | |
| 126 | +| `noteGuid` | string | Yes | GUID of the note to delete | |
| 127 | + |
| 128 | +#### Output |
| 129 | + |
| 130 | +| Parameter | Type | Description | |
| 131 | +| --------- | ---- | ----------- | |
| 132 | +| `success` | boolean | Whether the note was successfully deleted | |
| 133 | +| `noteGuid` | string | GUID of the deleted note | |
| 134 | + |
| 135 | +### `evernote_get_note` |
| 136 | + |
| 137 | +Retrieve a note from Evernote by its GUID |
| 138 | + |
| 139 | +#### Input |
| 140 | + |
| 141 | +| Parameter | Type | Required | Description | |
| 142 | +| --------- | ---- | -------- | ----------- | |
| 143 | +| `apiKey` | string | Yes | Evernote developer token | |
| 144 | +| `noteGuid` | string | Yes | GUID of the note to retrieve | |
| 145 | +| `withContent` | boolean | No | Whether to include note content \(default: true\) | |
| 146 | + |
| 147 | +#### Output |
| 148 | + |
| 149 | +| Parameter | Type | Description | |
| 150 | +| --------- | ---- | ----------- | |
| 151 | +| `note` | object | The retrieved note | |
| 152 | +| ↳ `guid` | string | Unique identifier of the note | |
| 153 | +| ↳ `title` | string | Title of the note | |
| 154 | +| ↳ `content` | string | ENML content of the note | |
| 155 | +| ↳ `contentLength` | number | Length of the note content | |
| 156 | +| ↳ `notebookGuid` | string | GUID of the containing notebook | |
| 157 | +| ↳ `tagGuids` | array | GUIDs of tags on the note | |
| 158 | +| ↳ `tagNames` | array | Names of tags on the note | |
| 159 | +| ↳ `created` | number | Creation timestamp in milliseconds | |
| 160 | +| ↳ `updated` | number | Last updated timestamp in milliseconds | |
| 161 | +| ↳ `active` | boolean | Whether the note is active \(not in trash\) | |
| 162 | + |
| 163 | +### `evernote_get_notebook` |
| 164 | + |
| 165 | +Retrieve a notebook from Evernote by its GUID |
| 166 | + |
| 167 | +#### Input |
| 168 | + |
| 169 | +| Parameter | Type | Required | Description | |
| 170 | +| --------- | ---- | -------- | ----------- | |
| 171 | +| `apiKey` | string | Yes | Evernote developer token | |
| 172 | +| `notebookGuid` | string | Yes | GUID of the notebook to retrieve | |
| 173 | + |
| 174 | +#### Output |
| 175 | + |
| 176 | +| Parameter | Type | Description | |
| 177 | +| --------- | ---- | ----------- | |
| 178 | +| `notebook` | object | The retrieved notebook | |
| 179 | +| ↳ `guid` | string | Notebook GUID | |
| 180 | +| ↳ `name` | string | Notebook name | |
| 181 | +| ↳ `defaultNotebook` | boolean | Whether this is the default notebook | |
| 182 | +| ↳ `serviceCreated` | number | Creation timestamp in milliseconds | |
| 183 | +| ↳ `serviceUpdated` | number | Last updated timestamp in milliseconds | |
| 184 | +| ↳ `stack` | string | Notebook stack name | |
| 185 | + |
| 186 | +### `evernote_list_notebooks` |
| 187 | + |
| 188 | +List all notebooks in an Evernote account |
| 189 | + |
| 190 | +#### Input |
| 191 | + |
| 192 | +| Parameter | Type | Required | Description | |
| 193 | +| --------- | ---- | -------- | ----------- | |
| 194 | +| `apiKey` | string | Yes | Evernote developer token | |
| 195 | + |
| 196 | +#### Output |
| 197 | + |
| 198 | +| Parameter | Type | Description | |
| 199 | +| --------- | ---- | ----------- | |
| 200 | +| `notebooks` | array | List of notebooks | |
| 201 | + |
| 202 | +### `evernote_list_tags` |
| 203 | + |
| 204 | +List all tags in an Evernote account |
| 205 | + |
| 206 | +#### Input |
| 207 | + |
| 208 | +| Parameter | Type | Required | Description | |
| 209 | +| --------- | ---- | -------- | ----------- | |
| 210 | +| `apiKey` | string | Yes | Evernote developer token | |
| 211 | + |
| 212 | +#### Output |
| 213 | + |
| 214 | +| Parameter | Type | Description | |
| 215 | +| --------- | ---- | ----------- | |
| 216 | +| `tags` | array | List of tags | |
| 217 | + |
| 218 | +### `evernote_search_notes` |
| 219 | + |
| 220 | +Search for notes in Evernote using the Evernote search grammar |
| 221 | + |
| 222 | +#### Input |
| 223 | + |
| 224 | +| Parameter | Type | Required | Description | |
| 225 | +| --------- | ---- | -------- | ----------- | |
| 226 | +| `apiKey` | string | Yes | Evernote developer token | |
| 227 | +| `query` | string | Yes | Search query using Evernote search grammar \(e.g., "tag:work intitle:meeting"\) | |
| 228 | +| `notebookGuid` | string | No | Restrict search to a specific notebook by GUID | |
| 229 | +| `offset` | number | No | Starting index for results \(default: 0\) | |
| 230 | +| `maxNotes` | number | No | Maximum number of notes to return \(default: 25\) | |
| 231 | + |
| 232 | +#### Output |
| 233 | + |
| 234 | +| Parameter | Type | Description | |
| 235 | +| --------- | ---- | ----------- | |
| 236 | +| `totalNotes` | number | Total number of matching notes | |
| 237 | +| `notes` | array | List of matching note metadata | |
| 238 | + |
| 239 | +### `evernote_update_note` |
| 240 | + |
| 241 | +Update an existing note in Evernote |
| 242 | + |
| 243 | +#### Input |
| 244 | + |
| 245 | +| Parameter | Type | Required | Description | |
| 246 | +| --------- | ---- | -------- | ----------- | |
| 247 | +| `apiKey` | string | Yes | Evernote developer token | |
| 248 | +| `noteGuid` | string | Yes | GUID of the note to update | |
| 249 | +| `title` | string | No | New title for the note | |
| 250 | +| `content` | string | No | New content for the note \(plain text or ENML\) | |
| 251 | +| `notebookGuid` | string | No | GUID of the notebook to move the note to | |
| 252 | +| `tagNames` | string | No | Comma-separated list of tag names \(replaces existing tags\) | |
| 253 | + |
| 254 | +#### Output |
| 255 | + |
| 256 | +| Parameter | Type | Description | |
| 257 | +| --------- | ---- | ----------- | |
| 258 | +| `note` | object | The updated note | |
| 259 | +| ↳ `guid` | string | Unique identifier of the note | |
| 260 | +| ↳ `title` | string | Title of the note | |
| 261 | +| ↳ `content` | string | ENML content of the note | |
| 262 | +| ↳ `notebookGuid` | string | GUID of the containing notebook | |
| 263 | +| ↳ `tagNames` | array | Tag names on the note | |
| 264 | +| ↳ `created` | number | Creation timestamp in milliseconds | |
| 265 | +| ↳ `updated` | number | Last updated timestamp in milliseconds | |
| 266 | + |
| 267 | + |
0 commit comments