list_send_as
Retrieve configured email aliases for sending messages from a Gmail account to manage multiple sender identities.
Instructions
Lists the send-as aliases for the specified account
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:1160-1165 (handler)Handler function for the 'list_send_as' tool. It invokes the shared handleTool utility with a configuration object and an inner async callback that calls the Gmail API method `users.settings.sendAs.list({ userId: 'me' })` to retrieve the list of send-as aliases, then formats the response using formatResponse.async () => { return handleTool(config, async (gmail: gmail_v1.Gmail) => { const { data } = await gmail.users.settings.sendAs.list({ userId: 'me' }) return formatResponse(data) }) }
- src/index.ts:1157-1166 (registration)MCP server tool registration for 'list_send_as'. Defines the tool name, description, empty input schema (no parameters required), and references the handler function.server.tool("list_send_as", "Lists the send-as aliases for the specified account", {}, async () => { return handleTool(config, async (gmail: gmail_v1.Gmail) => { const { data } = await gmail.users.settings.sendAs.list({ userId: 'me' }) return formatResponse(data) }) } )
- src/index.ts:50-66 (helper)Shared helper function used by all Gmail tools, including 'list_send_as'. Manages OAuth2 authentication, credential validation, Gmail client instantiation, executes the provided API callback, and handles errors gracefully.const handleTool = async (queryConfig: Record<string, any> | undefined, apiCall: (gmail: gmail_v1.Gmail) => Promise<any>) => { try { const oauth2Client = queryConfig ? createOAuth2Client(queryConfig) : defaultOAuth2Client if (!oauth2Client) throw new Error('OAuth2 client could not be created, please check your credentials') const credentialsAreValid = await validateCredentials(oauth2Client) if (!credentialsAreValid) throw new Error('OAuth2 credentials are invalid, please re-authenticate') const gmailClient = queryConfig ? google.gmail({ version: 'v1', auth: oauth2Client }) : defaultGmailClient if (!gmailClient) throw new Error('Gmail client could not be created, please check your credentials') const result = await apiCall(gmailClient) return result } catch (error: any) { return `Tool execution failed: ${error.message}` } }
- src/index.ts:48-48 (helper)Utility function to format API responses into MCP-compatible content structure (text with JSON string). Used by the 'list_send_as' handler.const formatResponse = (response: any) => ({ content: [{ type: "text", text: JSON.stringify(response) }] })
- src/index.ts:1159-1159 (schema)Empty input schema for 'list_send_as' tool, indicating no parameters are required.{},