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
/// Configuration options for <see cref="M:McpEndpointRouteBuilderExtensions.MapMcp"/>.
8
8
/// which implements the Streaming HTTP transport for the Model Context Protocol.
9
-
/// See the protocol specification for details on the Streamable HTTP transport. <see href="https://modelcontextprotocol.io/specification/2025-03-26/basic/transports#streamable-http"/>
9
+
/// See the protocol specification for details on the Streamable HTTP transport. <see href="https://modelcontextprotocol.io/specification/2025-06-18/basic/transports#streamable-http"/>
10
10
/// </summary>
11
11
publicclassHttpServerTransportOptions
12
12
{
@@ -28,7 +28,7 @@ public class HttpServerTransportOptions
28
28
/// </summary>
29
29
/// <remarks>
30
30
/// If <see langword="true"/>, the "/sse" endpoint will be disabled, and client information will be round-tripped as part
31
-
/// of the "mcp-session-id" header instead of stored in memory. Unsolicited server-to-client messages and all server-to-client
31
+
/// of the "MCP-Session-Id" header instead of stored in memory. Unsolicited server-to-client messages and all server-to-client
32
32
/// requests are also unsupported, because any responses may arrive at another ASP.NET Core application process.
33
33
/// Client sampling and roots capabilities are also disabled in stateless mode, because the server cannot make requests.
Copy file name to clipboardExpand all lines: src/ModelContextProtocol.AspNetCore/McpEndpointRouteBuilderExtensions.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ public static class McpEndpointRouteBuilderExtensions
15
15
{
16
16
/// <summary>
17
17
/// Sets up endpoints for handling MCP Streamable HTTP transport.
18
-
/// See <see href="https://modelcontextprotocol.io/specification/2025-03-26/basic/transports#streamable-http">the 2025-03-26 protocol specification</see> for details about the Streamable HTTP transport.
18
+
/// See <see href="https://modelcontextprotocol.io/specification/2025-06-18/basic/transports#streamable-http">the 2025-06-18 protocol specification</see> for details about the Streamable HTTP transport.
19
19
/// Also maps legacy SSE endpoints for backward compatibility at the path "/sse" and "/message". <see href="https://modelcontextprotocol.io/specification/2024-11-05/basic/transports#http-with-sse">the 2024-11-05 protocol specification</see> for details about the HTTP with SSE transport.
20
20
/// </summary>
21
21
/// <param name="endpoints">The web application to attach MCP HTTP endpoints.</param>
0 commit comments