Endpoint detail
Parameters and schema
Configure tool arguments and inspect the generated MCP inputSchema.
2Total2Enabled0Disabled
Parameters and schema
Persisted through the endpoint API.
Parameters
Parameter rows define the MCP tool input schema. Name and type become JSON Schema properties; required controls whether clients must send the argument.
Generated MCP inputSchema
Generated by the endpoint domain schema service from the current parameter definition.
{
"type": "object",
"properties": {
"message": {
"type": "string",
"title": "Message",
"description": "Message to echo back in later runtime slices."
}
},
"required": [
"message"
],
"additionalProperties": false
}