fix: add server.py placeholder to fix serve startup

This commit is contained in:
2026-04-15 12:31:19 +02:00
parent 38da31b0cb
commit 3f3828f3c4
+17
View File
@@ -0,0 +1,17 @@
"""MCP server for Family Wall.
Tools (get_circles, get_lists, get_tasks) are implemented in Gruppe 2.
"""
from __future__ import annotations
from mcp.server.fastmcp import FastMCP
def create_server() -> FastMCP:
"""Create and return the Family Wall MCP server.
Returns:
Configured FastMCP instance (no tools registered yet — see Gruppe 2).
"""
return FastMCP("familywall")