list_inboxes
Retrieve all active disposable email inboxes associated with your API key to manage email verification and communication tasks.
Instructions
List all active inboxes for the current API key.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- mcp-server/src/index.ts:88-96 (handler)The handler for the 'list_inboxes' tool, which fetches data from the '/v1/inboxes' endpoint using the `blipFetch` helper function.
server.tool( "list_inboxes", "List all active inboxes for the current API key.", {}, async () => { const result = await blipFetch("/v1/inboxes"); return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }] }; } );