Skip to main content

Computer Tool

Working on any web app? Run this simple python server and allow the agent to see your screen!
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")
Run: python computer_server.py Add to cursor:
{
    "hud-computer": {
        "url": "http://localhost:8777/mcp"
    }
}
More patterns coming soon! Have a cool pattern? Share it on Discord.