diff --git a/examples/smart_home/src/smart_home/hub.py b/examples/smart_home/src/smart_home/hub.py index 41aba82e5..55239b8be 100644 --- a/examples/smart_home/src/smart_home/hub.py +++ b/examples/smart_home/src/smart_home/hub.py @@ -7,7 +7,7 @@ from smart_home.settings import settings hub_mcp = FastMCP( "Smart Home Hub (phue2)", dependencies=[ - "smart_home@git+https://github.com/jlowin/fastmcp.git@n8example#subdirectory=examples/smart_home", + "smart_home@git+https://github.com/jlowin/fastmcp.git#subdirectory=examples/smart_home", ], ) diff --git a/examples/smart_home/src/smart_home/lights/server.py b/examples/smart_home/src/smart_home/lights/server.py index e9946ac49..bd4d0fccb 100644 --- a/examples/smart_home/src/smart_home/lights/server.py +++ b/examples/smart_home/src/smart_home/lights/server.py @@ -25,7 +25,7 @@ class HueAttributes(TypedDict, total=False): lights_mcp = FastMCP( "Hue Lights Service (phue2)", dependencies=[ - "smart_home@git+https://github.com/jlowin/fastmcp.git@n8example#subdirectory=examples/smart_home", + "smart_home@git+https://github.com/jlowin/fastmcp.git#subdirectory=examples/smart_home", ], )