WSO2 · JSON Structure

Publisher Api Mcp Server Validation Response Structure

MCPServerValidationResponse schema from WSO2 API Manager

Type: object Properties: 4 Required: 2
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

MCP Server validation Response is a JSON Structure definition published by WSO2, describing 4 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

isValid errorMessage content toolInfo

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wso2/refs/heads/main/json-structure/publisher-api-mcp-server-validation-response-structure.json",
  "name": "MCP Server validation Response",
  "description": "MCPServerValidationResponse schema from WSO2 API Manager",
  "required": [
    "errorMessage",
    "isValid"
  ],
  "type": "object",
  "properties": {
    "isValid": {
      "type": "boolean",
      "description": "This attribute declares whether this definition is valid or not.\n",
      "example": true
    },
    "errorMessage": {
      "type": "string",
      "description": "This attribute declares the validation error message\n"
    },
    "content": {
      "type": "string",
      "description": "MCP Server schema definition content.\n"
    },
    "toolInfo": {
      "type": "object",
      "properties": {
        "operations": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/MCPServerOperation"
          }
        }
      }
    }
  }
}