@brxce/drop-mcp
v0.0.2
Published
MCP server for DROP notes - Access your notes from AI assistants
Maintainers
Readme
drop-mcp
MCP server for DROP notes. Access your notes from AI assistants like Claude.
Installation
npm install -g drop-mcpConfiguration
Getting Your Token
- Open the DROP app
- Go to Profile → Copy MCP Token
Claude Code / Desktop
Add to .mcp.json:
{
"mcpServers": {
"drop": {
"command": "drop-mcp",
"env": {
"DROP_TOKEN": "your-token"
}
}
}
}Available Tools
Notes
list_notes- List recent notes with paginationget_note- Get a single note with tags and attachmentscreate_note- Create a new noteupdate_note- Update an existing notedelete_note- Soft-delete a note (move to trash)archive_note- Archive a note
Search
search_notes- Search notes by text contentsearch_by_date_range- Search notes within a date range
Tags
list_tags- List all tags with note countsget_notes_by_tag- Get all notes with a specific tagadd_tags_to_note- Add tags to a noteremove_tags_from_note- Remove tags from a note
Attachments
upload_attachment- Upload an attachment (base64)upload_from_path- Upload a local file by pathlist_attachments- List all attachments for a notedelete_attachment- Delete an attachment
Examples
List recent notes
Use the list_notes tool to show my recent notesSearch notes
Search my notes for "meeting"Create a note with tags
Create a note with content "Remember to buy groceries" and add the tag "todo"Upload an image
Upload the file at /path/to/image.png to note <note-id>Development
# Clone the repository
git clone https://github.com/intellieffect/drop.git
cd drop/packages/mcp-server
# Install dependencies
pnpm install
# Build
pnpm build
# Run locally (get token from DROP app → Profile → Copy MCP Token)
DROP_TOKEN=your-api-key pnpm startLicense
MIT
