@aot-tech/gmail-mcp-server
Version:
Gmail MCP Server with Bearer Token Authentication - A Model Context Protocol server for Gmail access
57 lines (56 loc) • 1.35 kB
TypeScript
export declare const sendEmailTool: {
name: string;
description: string;
parameters: {
type: string;
properties: {
to: {
type: string;
items: {
type: string;
format: string;
};
description: string;
minItems: number;
};
subject: {
type: string;
description: string;
};
body: {
type: string;
description: string;
};
cc: {
type: string;
items: {
type: string;
format: string;
};
description: string;
};
bcc: {
type: string;
items: {
type: string;
format: string;
};
description: string;
};
};
required: string[];
};
handler: (args: any) => Promise<{
content: {
type: string;
text: string;
}[];
isError?: undefined;
} | {
content: {
type: string;
text: string;
}[];
isError: boolean;
}>;
};