We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kushal45/GmailMcpServer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
FormatterOptions.ts•552 B
/**
* Common options for all formatters
*/
export interface FormatterOptions {
/** Include email attachments in the formatted output */
includeAttachments?: boolean;
/** Include metadata about the export in the formatted output */
includeMetadata?: boolean;
/** Format the output in a human-readable way (when applicable) */
prettyPrint?: boolean;
/** Maximum size in bytes for the output (when applicable) */
maxSizeBytes?: number;
/** Format-specific options can be added via string indexing */
[key: string]: any;
}