get_operation_schema
Retrieve the schema definition for parameters required by specific MCP service operations. Clarifies mandatory and optional inputs, ensuring accurate configurations when calling execute_mcp_operation.
Instructions
Get the parameter schema definition for a specific MCP service and operation. Returns the exact structure needed for parameters when calling execute_mcp_operation. Useful for understanding what parameters are required and optional for any service operation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
operation | No | Optional operation name to get specific operation schema | |
serviceName | Yes | Service name to get schema for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"operation": {
"description": "Optional operation name to get specific operation schema",
"type": "string"
},
"serviceName": {
"description": "Service name to get schema for",
"enum": [
"TaskOperations",
"PlanningOperations",
"WorkflowOperations",
"ReviewOperations",
"ResearchOperations",
"SubtaskOperations"
],
"type": "string"
}
},
"required": [
"serviceName"
],
"type": "object"
}