Microsoft Azure API Management · Example Payload

Microsoft Azure Api Management Aigateway Mcp Example

A2AAI GatewayAPI CenterAPI GatewayAPI ManagementEnterpriseMCPMicrosoft Azure

Microsoft Azure Api Management Aigateway Mcp Example is an example object payload from Microsoft Azure API Management, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "AIGateway_MCP",
  "method": "POST",
  "path": "/mcp",
  "summary": "Microsoft Azure API Management MCP Server Request Via AI Gateway",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "MCPToolCallExample",
      "example": {
        "jsonrpc": "2.0",
        "method": "tools/call",
        "id": 1,
        "params": {
          "name": "get_weather",
          "arguments": {
            "location": "Seattle"
          }
        }
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "MCPToolCallExample",
      "example": {
        "jsonrpc": "2.0",
        "id": 1,
        "result": {
          "content": [
            {
              "type": "text",
              "text": "The weather in Seattle is 62F and partly cloudy."
            }
          ]
        }
      }
    }
  ]
}