We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaabe5b commit d8af4ddCopy full SHA for d8af4dd
2 files changed
src/openstack_mcp_server/__init__.py
@@ -35,7 +35,7 @@ def main():
35
signal.signal(signal.SIGTERM, handle_interrupt)
36
37
# Validate transport protocol
38
- if MCP_TRANSPORT not in ["stdio", "sse", "streamable-http"]:
+ if MCP_TRANSPORT not in ["stdio", "streamable-http"]:
39
logger.error(
40
f"Invalid transport protocol: {MCP_TRANSPORT}. Using stdio instead.",
41
)
src/openstack_mcp_server/server.py
@@ -23,7 +23,6 @@ def serve(transport: str, **kwargs):
23
mcp.run(transport="stdio", **kwargs)
24
elif transport == "streamable-http":
25
mcp.run(transport="streamable-http", **kwargs)
26
- elif transport == "sse":
27
- mcp.run(transport="sse", **kwargs)
+
28
else:
29
raise ValueError(f"Unsupported transport: {transport}")
0 commit comments