get_inbox
Retrieve inbox details and list received emails to monitor incoming messages and extract verification codes for automated sign-up workflows.
Instructions
Get inbox details and list of received emails.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| inbox_id | Yes | The inbox ID |
Implementation Reference
- mcp-server/src/index.ts:98-107 (handler)Implementation of the 'get_inbox' tool, which fetches details of a specific inbox using an inbox_id.
server.tool( "get_inbox", "Get inbox details and list of received emails.", { inbox_id: z.string().describe("The inbox ID"), }, async ({ inbox_id }) => { const result = await blipFetch(`/v1/inboxes/${inbox_id}`); return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }] }; }