fix(docker-compose): update image names and restore container name usage for MCP server URL

This commit is contained in:
Ke Sun
2025-12-24 10:39:13 +08:00
parent ac1afeffaf
commit 1f6abb2925
2 changed files with 45 additions and 4 deletions

View File

@@ -8,4 +8,7 @@ from mcp.server.fastmcp import FastMCP
# Initialize FastMCP server instance
# This instance is shared across all tool modules
mcp = FastMCP('data_flow')
mcp = FastMCP(
'data_flow',
allowed_hosts=["mcp-server", "localhost"]
)