Unipile MCP Server

unipile_get_emails

Get recent emails from a specific account. Returns email details including subject, body, sender, recipients, attachments, and metadata.

Input Schema

NameRequiredDescriptionDefault
account_idYesThe ID of the account to get emails from
limitNoMaximum number of emails to return (default: 10)

Input Schema (JSON Schema)

{ "properties": { "account_id": { "description": "The ID of the account to get emails from", "type": "string" }, "limit": { "description": "Maximum number of emails to return (default: 10)", "type": "integer" } }, "required": [ "account_id" ], "type": "object" }