Skip to main content
Glama

MCP Email Server

by ai-zerolab
BSD 3-Clause
93
  • Apple
  • Linux
cli.py581 B
import typer from mcp_email_server.app import mcp from mcp_email_server.config import delete_settings app = typer.Typer() @app.command() def stdio(): mcp.run(transport="stdio") @app.command() def sse( host: str = "localhost", port: int = 9557, ): mcp.settings.host = host mcp.settings.port = port mcp.run(transport="sse") @app.command() def ui(): from mcp_email_server.ui import main as ui_main ui_main() @app.command() def reset(): delete_settings() typer.echo("✅ Config reset") if __name__ == "__main__": app(["stdio"])

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/ai-zerolab/mcp-email-server'

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