@aot-tech/gmail-mcp-server
Version:
Gmail MCP Server with Bearer Token Authentication - A Model Context Protocol server for Gmail access
28 lines (27 loc) • 580 B
TypeScript
export declare const deleteEmailTool: {
name: string;
description: string;
parameters: {
type: string;
properties: {
messageId: {
type: string;
description: string;
};
};
required: string[];
};
handler: (args: any) => Promise<{
content: {
type: string;
text: string;
}[];
isError?: undefined;
} | {
content: {
type: string;
text: string;
}[];
isError: boolean;
}>;
};