We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vipincr/imagen-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run_server.py•256 B
#!/usr/bin/env python3
"""Startup script for the Imagen MCP Server."""
from mcp_server.server import mcp
if __name__ == "__main__":
# Run with stdio transport (default for MCP) without banner noise
mcp.run(show_banner=False, log_level="WARNING")