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": {
    "count": {
      "type": "number",
      "title": "count",
      "description": "How many words would be returned?"
    }
  },
  "required": [
    "count"
  ],
  "additionalProperties": false
}