You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-5Lines changed: 2 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@
9
9
-[Architecture](#architecture)
10
10
-[Features](#features)
11
11
-[Getting Started – Local Deployment](#getting-started---local-deployment)
12
-
-[Getting Started – Deploy to Azure](#getting-started---deploy-to-azure)
12
+
-[Getting Started – 1-Click Deploy to Azure](#getting-started---deploy-to-azure)
13
13
14
14
## Overview
15
15
@@ -23,7 +23,7 @@ This project provides:
23
23
24
24
## Key Concepts
25
25
26
-
-**MCP Server**: A server implementing the Model Context Protocol, which typically exposes SSE or streamable HTTP endpoints.
26
+
-**MCP Server**: A server implementing the Model Context Protocol, which typically a streamable HTTP endpoint.
27
27
-**Adapters**: Logical resources representing MCP servers in the gateway, managed under the `/adapters` scope. Designed to coexist with other resource types (e.g., `/agents`) in a unified AI development platform.
28
28
-**Session-Aware Stateful Routing**: Ensures that all requests with a given `session_id` are consistently routed to the same MCP server instance.
29
29
@@ -81,8 +81,6 @@ flowchart LR
81
81
82
82
### Data Plane – Gateway Routing for MCP Servers
83
83
84
-
-`GET /adapters/{name}/sse` — Establish an initial SSE connection.
85
-
-`POST /adapters/{name}/messages` — Send subsequent requests using `session_id`.
86
84
-`POST /adapters/{name}/mcp` — Establish a streamable HTTP connection.
/// This class represents the data for an adapter, including its name, image details, protocol, connection type, environment variables, and description.
10
+
/// This class represents the data for an adapter, including its name, image details, environment variables, and description.
11
11
/// </summary>
12
12
publicclassAdapterData
13
13
{
@@ -30,18 +30,6 @@ public class AdapterData
30
30
[JsonPropertyOrder(3)]
31
31
publicrequiredstringImageVersion{get;set;}
32
32
33
-
/// <summary>
34
-
/// The protocol used by the adapter. Default is MCP.
// There's an issue that the server response from the initialization call does not respect the base url.
121
-
// Before awaiting fix from MCP, having gateway to rewrite the response from the MCP server during the initialization phrase to append the prefix routing.
0 commit comments