MCPRequest

A2AAI GatewayAPI CenterAPI GatewayAPI ManagementEnterpriseMCPMicrosoft Azure

Properties

Name Type Description
jsonrpc string
method string
id integer
params object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-api-management-mcprequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MCPRequest",
  "title": "MCPRequest",
  "type": "object",
  "properties": {
    "jsonrpc": {
      "type": "string",
      "example": "2.0"
    },
    "method": {
      "type": "string",
      "example": "tools/call"
    },
    "id": {
      "type": "integer",
      "example": 1
    },
    "params": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "example": "get_weather"
        },
        "arguments": {
          "type": "object"
        }
      }
    }
  }
}