npx claudepluginhub verygoodplugins/claude-plugins --plugin evernoteCreate a new note in Evernote with optional notebook and tags.
/note-create [title]
If no title is provided, you'll be prompted for the note details.
Gather note details (if not provided):
List available notebooks (if needed):
mcp__evernote__evernote_list_notebooks({})
Create the note:
mcp__evernote__evernote_create_note({
title: "Note Title",
content: "Note content in markdown format",
notebookGuid: "notebook-guid", // optional
tags: ["tag1", "tag2"] // optional
})