We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b78729c commit 6f6b154Copy full SHA for 6f6b154
mcp_proxy_for_aws/server.py
@@ -59,14 +59,6 @@ async def _initialize_client(transport: ClientTransport):
59
async with contextlib.AsyncExitStack() as stack:
60
try:
61
client = await stack.enter_async_context(ProxyClient(transport))
62
- if client.initialize_result:
63
- print(
64
- client.initialize_result.model_dump_json(
65
- by_alias=True,
66
- exclude_none=True,
67
- ),
68
- file=sys.stdout,
69
- )
70
except httpx.HTTPStatusError as http_error:
71
logger.error('HTTP Error during initialize %s', http_error)
72
response = http_error.response
0 commit comments