We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dmarsters/quantum-zx-calculus-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
handler.py•326 B
"""
FastMCP Cloud entry point for Quantum ZX-Calculus server.
For FastMCP Cloud deployment, the entry point function must RETURN the server object.
The cloud platform handles the event loop and server.run() call.
"""
from .server import mcp
def handler():
"""Entry point for FastMCP Cloud deployment."""
return mcp