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 470ad9d commit 5c9b5faCopy full SHA for 5c9b5fa
src/datapilot/core/mcp_utils/mcp.py
@@ -87,13 +87,13 @@ def create_mcp_proxy():
87
input_def = next((d for d in mcp_config.get("inputs", []) if d["id"] == input_id), {})
88
inputs[input_id] = click.prompt(
89
input_def.get("description", input_id),
90
- hide_input=input_def.get("password", False),
+ hide_input=True,
91
)
92
# Create InputParameters config entry
93
input_configs.append(InputParameter(
94
name=input_def.get("name", input_id),
95
- type=input_def.get("type", "string"),
96
- required=input_def.get("required", True),
+ type="password",
+ required=True,
97
key=input_id,
98
description=input_def.get("description", "")
99
).__dict__)
0 commit comments