Simple cross-platform notes with instant sync.
## Simplenote MCP Server: Plain Text Notes The **Simplenote MCP Server** integrates Simplenote's minimalist note-taking app into Google Antigravity, enabling developers to create and sync plain text notes across devices through AI-assisted workflows. ### Why Simplenote MCP? - **Pure Simplicity**: Distraction-free plain text notes - **Instant Sync**: Real-time sync across all devices - **Version History**: Access previous versions of any note - **Tags**: Organize notes with simple tags - **Markdown Support**: Optional markdown preview ### Key Features #### 1. Note Operations ```javascript // Create note const note = await simplenote.createNote({ content: "# Development Notes\n\nToday's tasks:\n- Review PR\n- Update docs", tags: ["dev", "daily"] }); // Search notes const results = await simplenote.search({ query: "API endpoints", tag: "dev" }); // Get note const noteContent = await simplenote.getNote({ id: note.id, version: "latest" }); // Update note await simplenote.updateNote({ id: note.id, content: updatedContent, tags: ["dev", "daily", "done"] }); ``` #### 2. Organization and History ```javascript // List notes by tag const devNotes = await simplenote.listNotes({ tag: "dev", sort: "modifydate", order: "desc" }); // Get note history const versions = await simplenote.getNoteVersions({ id: note.id }); // Restore previous version await simplenote.restoreVersion({ id: note.id, version: versions[2].version }); // Trash note await simplenote.trashNote({ id: note.id }); // List all tags const tags = await simplenote.listTags(); ``` ### Configuration ```json { "mcpServers": { "simplenote": { "command": "npx", "args": ["-y", "@anthropic/mcp-simplenote"], "env": { "SIMPLENOTE_EMAIL": "your-email@example.com", "SIMPLENOTE_PASSWORD": "your-password" } } } } ``` ### Use Cases **Quick Notes**: Capture ideas and notes instantly from your IDE. **Cross-Device Sync**: Access notes from any device with instant sync. **Version Tracking**: Review and restore previous versions of notes. The Simplenote MCP Server brings lightweight note-taking to your development workflow.
{
"mcpServers": {
"simplenote": {}
}
}