Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/ModelContextProtocol.Core/Server/McpServerImpl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,18 @@ public McpServerImpl(ITransport transport, McpServerOptions options, ILoggerFact
_notificationHandlers.RegisterRange(notificationHandlers);
}

// In stateless mode, the server cannot send unsolicited notifications,
// so listChanged should not be advertised.
if (transport is StreamableHttpServerTransport { Stateless: true })
{
if (ServerCapabilities.Tools is not null)
ServerCapabilities.Tools.ListChanged = null;
if (ServerCapabilities.Prompts is not null)
ServerCapabilities.Prompts.ListChanged = null;
if (ServerCapabilities.Resources is not null)
ServerCapabilities.Resources.ListChanged = null;
}

// Now that everything has been configured, subscribe to any necessary notifications.
if (transport is not StreamableHttpServerTransport streamableHttpTransport || streamableHttpTransport.Stateless is false)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,32 @@ public async Task ConfigureSessionOptions_RunsPerRequest_InStatelessMode()
Assert.Equal("configured-beta", Assert.IsType<TextContentBlock>(content2).Text);
}

[Fact]
public async Task StatelessMode_DoesNotAdvertise_ListChangedCapabilities()
{
Builder.Services.AddMcpServer()
.WithHttpTransport(options =>
{
options.Stateless = true;
})
.WithTools([McpServerTool.Create(() => "result", new() { Name = "myTool" })])
.WithPrompts([McpServerPrompt.Create(() => new GetPromptResult(), new() { Name = "myPrompt" })])
.WithResources([McpServerResource.Create(() => new ReadResourceResult(), new() { UriTemplate = "resource://test" })]);

_app = Builder.Build();
_app.MapMcp();
await _app.StartAsync(TestContext.Current.CancellationToken);

HttpClient.DefaultRequestHeaders.Accept.Add(new("application/json"));
HttpClient.DefaultRequestHeaders.Accept.Add(new("text/event-stream"));

await using var client = await ConnectMcpClientAsync();

Assert.Null(client.ServerCapabilities.Tools?.ListChanged);
Assert.Null(client.ServerCapabilities.Prompts?.ListChanged);
Assert.Null(client.ServerCapabilities.Resources?.ListChanged);
}

[McpServerTool(Name = "testSamplingErrors")]
public static async Task<string> TestSamplingErrors(McpServer server)
{
Expand Down
Loading