diff --git a/dictionary.txt b/dictionary.txt index a97c1d6d0b1..59892de6787 100644 --- a/dictionary.txt +++ b/dictionary.txt @@ -5,6 +5,7 @@ accessibilities agrc Alderaan Andi +apphost appsettings ASPDEPR004 ASPDEPR008 @@ -41,8 +42,8 @@ contentfiles Contoso conv CQRS -CUST creds +CUST dataloaders debuggable decompile @@ -58,6 +59,7 @@ entityframework EPSG esque evolvability +Expando Fanout FFFFFFFZ fffzzz @@ -83,8 +85,8 @@ Hmac hotchocolate Includable inheritdocs -inmemory initializable +inmemory inspectable Kellner Kydne @@ -94,6 +96,7 @@ LICEN* Linq Marek matchesBrics +MCPEXP MediatR Memberwise mercurius @@ -197,6 +200,8 @@ Testcontainers Toub Touchpoint TOWGS +traceparent +tracestate Trimmable Tzdb unlisten @@ -213,7 +218,3 @@ websockets Wilhuff Wunder xunit -Expando -traceparent -tracestate -apphost diff --git a/src/Directory.Packages.props b/src/Directory.Packages.props index 7ef20f17d43..4added002cf 100644 --- a/src/Directory.Packages.props +++ b/src/Directory.Packages.props @@ -12,7 +12,7 @@ - + diff --git a/src/HotChocolate/Adapters/src/Adapters.Mcp.Core/Extensions/ServiceCollectionExtensions.cs b/src/HotChocolate/Adapters/src/Adapters.Mcp.Core/Extensions/ServiceCollectionExtensions.cs index ff4046cf9a6..79125587170 100644 --- a/src/HotChocolate/Adapters/src/Adapters.Mcp.Core/Extensions/ServiceCollectionExtensions.cs +++ b/src/HotChocolate/Adapters/src/Adapters.Mcp.Core/Extensions/ServiceCollectionExtensions.cs @@ -96,6 +96,7 @@ public static void AddMcpSchemaServices( }) .WithHttpTransport(options => { +#pragma warning disable MCPEXP002 // https://github.com/modelcontextprotocol/csharp-sdk/issues/1416 options.RunSessionHandler = async (_, mcpServer, token) => { if (mcpServer.SessionId == null) @@ -116,6 +117,7 @@ public static void AddMcpSchemaServices( mcpServers.TryRemove(mcpServer.SessionId, out var _); } }; +#pragma warning restore MCPEXP002 }) .WithListPromptsHandler( (context, _) => ValueTask.FromResult(ListPromptsHandler.Handle(context)))