delete_inbox
Remove an email inbox and all associated messages to clean up disposable email accounts after use.
Instructions
Delete an inbox and all its emails.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| inbox_id | Yes | The inbox ID to delete |
Implementation Reference
- mcp-server/src/index.ts:178-190 (handler)The implementation and registration of the 'delete_inbox' tool. It uses the 'blipFetch' helper to send a DELETE request to the API.
server.tool( "delete_inbox", "Delete an inbox and all its emails.", { inbox_id: z.string().describe("The inbox ID to delete"), }, async ({ inbox_id }) => { await blipFetch(`/v1/inboxes/${inbox_id}`, { method: "DELETE" }); return { content: [{ type: "text", text: `Inbox ${inbox_id} deleted.` }], }; } );