From 22c35b7bc8a4fa3ec2c65cc77429f2ff29cc6156 Mon Sep 17 00:00:00 2001 From: Sam Crowder Date: Mon, 30 Jun 2025 17:33:59 -0700 Subject: [PATCH] switch order of MCP methods in API spec (#5287) --- docs/docs/cloud/reference/api/openapi.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/docs/cloud/reference/api/openapi.json b/docs/docs/cloud/reference/api/openapi.json index bd1f326a4..782619368 100644 --- a/docs/docs/cloud/reference/api/openapi.json +++ b/docs/docs/cloud/reference/api/openapi.json @@ -2388,17 +2388,6 @@ } }, "/mcp/": { - "get": { - "operationId": "get_mcp", - "summary": "MCP Get", - "description": "Implemented according to the Streamable HTTP Transport specification.", - "responses": { - "405": { - "description": "GET method not allowed; streaming not supported." - } - }, - "tags": ["MCP"] - }, "post": { "operationId": "post_mcp", "summary": "MCP Post", @@ -2457,6 +2446,17 @@ }, "tags": ["MCP"] }, + "get": { + "operationId": "get_mcp", + "summary": "MCP Get", + "description": "Implemented according to the Streamable HTTP Transport specification.", + "responses": { + "405": { + "description": "GET method not allowed; streaming not supported." + } + }, + "tags": ["MCP"] + }, "delete": { "operationId": "delete_mcp", "summary": "Terminate Session",