Dead Drop · Capability
Dead Drop Ephemeral Messaging
Unified workflow for ephemeral, zero-knowledge data sharing. Generates unused drop names, creates encrypted or public drops, retrieves and updates drop payloads, and manages drop version history. Built on the dead-drop privacy-focused API running on Cloudflare Workers.
What You Can Do
GET
Health check
— Health check.
/v1/health
GET
Generate name
— Generate a random unused drop name.
/v1/drops/generate-name
GET
Check name
— Check whether a drop id is available.
/v1/drops/check/{id}
POST
Create drop
— Create a new drop.
/v1/drops
GET
Get drop
— Retrieve a drop.
/v1/drops/{id}
PUT
Update drop
— Update a drop.
/v1/drops/{id}
DELETE
Delete drop
— Delete a drop.
/v1/drops/{id}
GET
List history
— List drop versions.
/v1/drops/{id}/history
GET
Get version
— Get a specific drop version.
/v1/drops/{id}/history/{version}
MCP Tools
health-check
Verify the dead-drop API is healthy.
read-only
generate-drop-name
Generate a random unused 4-word drop name and SHA-256 id.
read-only
check-drop-name
Check whether a drop name (hashed id) is available.
read-only
create-drop
Create a new ephemeral drop, private (encrypted) or public.
get-drop
Retrieve the current version of an ephemeral drop.
read-only
update-drop
Replace the payload of an existing drop, creating a new version.
delete-drop
Permanently delete a drop and its history.
idempotent
list-drop-history
List the stored historical versions of a drop.
read-only
get-drop-version
Retrieve a specific historical version of a drop.
read-only