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
13 changes: 7 additions & 6 deletions dictionary.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ accessibilities
agrc
Alderaan
Andi
apphost
appsettings
ASPDEPR004
ASPDEPR008
Expand Down Expand Up @@ -41,8 +42,8 @@ contentfiles
Contoso
conv
CQRS
CUST
creds
CUST
dataloaders
debuggable
decompile
Expand All @@ -58,6 +59,7 @@ entityframework
EPSG
esque
evolvability
Expando
Fanout
FFFFFFFZ
fffzzz
Expand All @@ -83,8 +85,8 @@ Hmac
hotchocolate
Includable
inheritdocs
inmemory
initializable
inmemory
inspectable
Kellner
Kydne
Expand All @@ -94,6 +96,7 @@ LICEN*
Linq
Marek
matchesBrics
MCPEXP
MediatR
Memberwise
mercurius
Expand Down Expand Up @@ -197,6 +200,8 @@ Testcontainers
Toub
Touchpoint
TOWGS
traceparent
tracestate
Trimmable
Tzdb
unlisten
Expand All @@ -213,7 +218,3 @@ websockets
Wilhuff
Wunder
xunit
Expando
traceparent
tracestate
apphost
2 changes: 1 addition & 1 deletion src/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PackageVersion Include="Basic.Reference.Assemblies.Net90" Version="1.8.3" />
<PackageVersion Include="BenchmarkDotNet" Version="0.15.4" />
<PackageVersion Include="CaseConverter" Version="2.0.1" />
<PackageVersion Include="ChilliCream.ModelContextProtocol.AspNetCore" Version="0.0.1-rc.1" />
<PackageVersion Include="ChilliCream.ModelContextProtocol.AspNetCore" Version="1.1.0" />
<PackageVersion Include="ChilliCream.Nitro.App" Version="$(NitroVersion)" />
<PackageVersion Include="ChilliCream.Testing.Utilities" Version="0.2.0" />
<PackageVersion Include="coverlet.collector" Version="6.0.4" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)))
Expand Down
Loading