Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/tiger/mcp/service_tools.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func setServiceIDSchemaProperties(schema *jsonschema.Schema) {

// setWithPasswordSchemaProperties sets common with_password schema properties
func setWithPasswordSchemaProperties(schema *jsonschema.Schema) {
schema.Properties["with_password"].Description = "Whether to include the password in the response and connection string."
schema.Properties["with_password"].Description = "Whether to include the password in the response and connection string. NEVER set to true unless the user explicitly asks for the password."
schema.Properties["with_password"].Default = util.Must(json.Marshal(false))
schema.Properties["with_password"].Examples = []any{false, true}
}
Expand Down