Collection of unique examples with the SDK
from hud.server import MCPServer from hud.tools import HudComputerTool mcp = MCPServer(name="HUD Computer", host="0.0.0.0", port=8777) mcp.add_tool(HudComputerTool()) mcp.run(transport="streamable-http")
python computer_server.py
{ "hud-computer": { "url": "http://localhost:8777/mcp" } }
Was this page helpful?