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 9b3979f commit 3aa8e71Copy full SHA for 3aa8e71
src/datapilot/core/mcp_utils/mcp.py
@@ -75,8 +75,8 @@ def create_mcp_proxy():
75
76
# Execute with processed parameters
77
output = asyncio.run(list_tools(command=server_config["command"], args=processed_args, env=processed_env))
78
- click.echo(f"\nServer: {server_name}")
79
- click.echo(json.dumps(output, indent=2))
+ output_with_name = {"name": server_name, **output}
+ click.echo(json.dumps(output_with_name, indent=2))
80
81
82
async def list_tools(command: str, args: list[str], env: dict[str, str]):
0 commit comments