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
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"description": "Pinned npm dependencies for MCP C# SDK integration and conformance tests",
"dependencies": {
"@modelcontextprotocol/conformance": "0.2.0-alpha.8",
"@modelcontextprotocol/conformance": "0.2.0-alpha.9",
"@modelcontextprotocol/server-everything": "2026.1.26",
"@modelcontextprotocol/server-memory": "2026.1.26"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,19 @@ public ClientConformanceTests(ITestOutputHelper output)
[InlineData("auth/resource-mismatch")]
[InlineData("auth/pre-registration")]

// Offline access scope negotiation.
[InlineData("auth/offline-access-scope")]
[InlineData("auth/offline-access-not-supported")]

// RFC 9207 authorization server issuer validation.
[InlineData("auth/iss-supported")]
[InlineData("auth/iss-not-advertised")]
[InlineData("auth/iss-supported-missing")]
[InlineData("auth/iss-wrong-issuer")]
[InlineData("auth/iss-unexpected")]
[InlineData("auth/iss-normalized")]
[InlineData("auth/metadata-issuer-mismatch")]

Comment thread
halter73 marked this conversation as resolved.
// Backcompat: 2025-03-26 OAuth flows (no per-request metadata, root-location metadata).
[InlineData("auth/2025-03-26-oauth-metadata-backcompat")]
[InlineData("auth/2025-03-26-oauth-endpoint-fallback")]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using System.Runtime.InteropServices;
using ModelContextProtocol.Tests.Utils;

namespace ModelContextProtocol.ConformanceTests;
Expand Down Expand Up @@ -28,12 +27,9 @@ public async Task RunConformanceTests()
}

[Fact]
public async Task RunPendingConformanceTest_JsonSchema202012()
public async Task RunConformanceTest_JsonSchema202012()
{
Assert.SkipWhen(!NodeHelpers.IsNodeInstalled(), "Node.js is not installed. Skipping conformance tests.");
Assert.SkipWhen(
RuntimeInformation.IsOSPlatform(OSPlatform.Windows),
"Pending Node-based conformance scenario is unstable on Windows due to a libuv shutdown assertion.");

var result = await RunConformanceTestsAsync($"server --url {fixture.ServerUrl} --scenario json-schema-2020-12");

Expand All @@ -42,12 +38,9 @@ public async Task RunPendingConformanceTest_JsonSchema202012()
}

[Fact]
public async Task RunPendingConformanceTest_ServerSsePolling()
public async Task RunConformanceTest_ServerSsePolling()
{
Assert.SkipWhen(!NodeHelpers.IsNodeInstalled(), "Node.js is not installed. Skipping conformance tests.");
Assert.SkipWhen(
RuntimeInformation.IsOSPlatform(OSPlatform.Windows),
"Pending Node-based conformance scenario is unstable on Windows due to a libuv shutdown assertion.");

var result = await RunConformanceTestsAsync($"server --url {fixture.ServerUrl} --scenario server-sse-polling");

Expand Down