@aot-tech/gmail-mcp-server
Version:
Gmail MCP Server with Bearer Token Authentication - A Model Context Protocol server for Gmail access
27 lines (26 loc) • 673 B
TypeScript
export { sendEmailTool } from './send-email';
export { searchEmailsTool } from './search-emails';
export { readEmailTool } from './read-email';
export { deleteEmailTool } from './delete-email';
export { listLabelsTool } from './list-labels';
export declare const allTools: {
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;
}>;
}[];