Skip to content
Closed
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
2 changes: 1 addition & 1 deletion src/PlanViewer.App/PlanViewer.App.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<PackageReference Include="AvaloniaEdit.TextMate" Version="11.4.1" />
<PackageReference Include="AvaloniaEdit.TextMate.Grammars" Version="0.10.12.1" />
<PackageReference Include="Meziantou.Framework.Win32.CredentialManager" Version="3.0.1" />
<PackageReference Include="ModelContextProtocol" Version="1.4.1" />
<PackageReference Include="ModelContextProtocol" Version="2.0.0" />

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Version mismatch: ModelContextProtocol bumped to 2.0.0 but ModelContextProtocol.AspNetCore (line 24) still pinned to 1.4.1. ModelContextProtocol.AspNetCore 1.4.1's package dependency requires ModelContextProtocol [1.4.1], so NuGet restore will fail or pull in a mismatched transitive graph. src/PlanViewer.App/Mcp/McpHostService.cs:10,80,109 uses AddMcpServer().WithHttpTransport() + MapMcp() from the AspNetCore package — both packages have to move together. This is exactly why dependabot opened #422, which bumps both to 2.0.0. Close this PR and take #422 instead.


Generated by Claude Code

<PackageReference Include="ModelContextProtocol.AspNetCore" Version="1.4.1" />
<PackageReference Include="TextMateSharp.Grammars" Version="2.0.4" />
<PackageReference Include="Microsoft.SqlServer.TransactSql.ScriptDom" Version="180.59.2" />
Expand Down
Loading