Skip to main content
Glama

Gmail MCP Server

by jasonsum
from . import server import asyncio import argparse def main(): """Main entry point for the package.""" parser = argparse.ArgumentParser(description='Gmail API MCP Server') parser.add_argument('--creds-file-path', required=True, help='OAuth 2.0 credentials file path') parser.add_argument('--token-path', required=True, help='File location to store and retrieve access and refresh tokens for application') args = parser.parse_args() asyncio.run(server.main(args.creds_file_path, args.token_path)) # Optionally expose other important items at package level __all__ = ['main', 'server']

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jasonsum/gmail-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server