Skip to main content
verygoodplugins

evernote

by verygoodpluginsv1.0.0

Evernote integration - notes, notebooks, and research management

Installation guide →
1 skill 3 commandsmcpproductivity GitHub

Commands

note-create

Create a new note in Evernote

note-search

Search for notes in Evernote

research-save

Save research findings to Evernote

Documentation

# Evernote Plugin

Evernote integration for Claude Code - manage notes, notebooks, and research across sessions.

## Features

- **Note Management**: Create, search, update, and organize notes
- **Markdown Support**: Write in Markdown, auto-converted to Evernote format
- **Advanced Search**: Use Evernote's powerful search syntax
- **Notebook Organization**: Manage notebooks and stacks
- **Tag System**: Organize with hierarchical tags

## Installation

```bash
claude /plugin install ./plugins/evernote
```

## Configuration

Set the following environment variable:

```bash
export EVERNOTE_ACCESS_TOKEN="your-oauth-access-token"
export EVERNOTE_SANDBOX="false"  # Set to "true" for sandbox environment
```

### Getting an Access Token

1. Create an Evernote developer account at https://dev.evernote.com
2. Create an API key
3. Use OAuth flow to get an access token
4. Store the token securely

## Commands

| Command | Description |
| ------- | ----------- |
| `/note-create [title]` | Create a new note |
| `/note-search <query>` | Search for notes |
| `/research-save [topic]` | Save research findings |

## Available MCP Tools

- `evernote_create_note` - Create a new note
- `evernote_search_notes` - Search notes with filters
- `evernote_get_note` - Get note by GUID
- `evernote_update_note` - Update existing note
- `evernote_delete_note` - Delete a note
- `evernote_list_notebooks` - List all notebooks
- `evernote_create_notebook` - Create new notebook
- `evernote_list_tags` - List all tags
- `evernote_health_check` - Check connection status

## Example Usage

```text
# Create a quick note
/note-create Meeting Notes - Product Review

# Search for research
/note-search tag:research machine learning

# Save current research
/research-save AI Architecture Patterns

# Natural language
"Find my notes about the authentication refactor"
"Create a note summarizing today's debugging session"
```

## Search Syntax

| Operator | Example | Description |
| -------- | ------- | ----------- |
| `tag:` | `tag:work` | Notes with tag |
| `notebook:` | `notebook:Projects` | Notes in notebook |
| `created:` | `created:day-7` | Created recently |
| `intitle:` | `intitle:meeting` | Search titles |

## License

MIT