AI-powered Evernote note management
## Evernote MCP Server: Note Organization The **Evernote MCP Server** integrates Evernote's powerful note-taking platform into Google Antigravity, enabling developers to capture, organize, and search notes across all their devices through AI-assisted knowledge management. ### Why Evernote MCP? - **Universal Capture**: Save notes, web clips, images, and documents - **Powerful Search**: Find anything with OCR and full-text search - **Notebook Organization**: Organize with notebooks, stacks, and tags - **Cross-Platform**: Access notes on any device with sync - **Web Clipper**: Save web content with formatting preserved ### Key Features #### 1. Note Management ```javascript // Create note with rich content const note = await evernote.createNote({ title: "API Integration Guide", notebookGuid: "notebook_123", content: `<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE en-note SYSTEM "http://xml.evernote.com/pub/enml2.dtd"> <en-note> <h1>API Integration Guide</h1> <p>This guide covers the REST API integration...</p> <en-todo checked="false"/>Set up authentication<br/> <en-todo checked="false"/>Implement endpoints<br/> </en-note>`, tags: ["development", "api", "documentation"] }); // Search notes const results = await evernote.search({ query: "intitle:API tag:development", notebookGuid: "notebook_123", maxResults: 20 }); // Get note content const noteContent = await evernote.getNote({ guid: note.guid, withContent: true, withResourcesData: true }); ``` #### 2. Organization and Sync ```javascript // List notebooks const notebooks = await evernote.listNotebooks(); // Create notebook const notebook = await evernote.createNotebook({ name: "Project Documentation", stack: "Work" }); // Add tags to note await evernote.tagNote({ noteGuid: note.guid, tagGuids: ["tag_1", "tag_2"] }); // Get note history const versions = await evernote.getNoteVersions({ noteGuid: note.guid }); ``` ### Configuration ```json { "mcpServers": { "evernote": { "command": "npx", "args": ["-y", "@anthropic/mcp-evernote"], "env": { "EVERNOTE_ACCESS_TOKEN": "your-access-token", "EVERNOTE_SANDBOX": "false" } } } } ``` ### Use Cases **Technical Notes**: Capture code snippets, debugging sessions, and solutions. **Research**: Collect and organize research materials with web clipping. **Meeting Notes**: Take and organize meeting notes with searchable tags. The Evernote MCP Server brings powerful note organization to your development workflow.
{
"mcpServers": {
"evernote": {
"mcpServers": {
"evernote": {
"env": {
"EVERNOTE_ACCESS_TOKEN": "YOUR_OAUTH_TOKEN"
},
"args": [
"-y",
"evernote-mcp-server"
],
"command": "npx"
}
}
}
}
}