from fastmcp import FastMCP
# Create a proxy to your remote FastMCP Cloud server
# FastMCP Cloud uses Streamable HTTP (default), so just use the /mcp URL
mcp = FastMCP.as_proxy(
"https://at0mxploit.fastmcp.app/mcp", # Standard FastMCP Cloud URL
name="Atom Server Proxy"
)
if __name__ == "__main__":
# This runs via STDIO, which Claude Desktop can connect to
mcp.run()