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