diff --git a/docs/concepts/tasks/tasks.md b/docs/concepts/tasks/tasks.md index 9b67e119b..1b312d9c5 100644 --- a/docs/concepts/tasks/tasks.md +++ b/docs/concepts/tasks/tasks.md @@ -8,7 +8,7 @@ uid: tasks # MCP Tasks > [!WARNING] -> Tasks are an **experimental feature** in the MCP specification (version 2025-11-25). The API may change in future releases. +> Tasks are an **experimental feature** in the MCP specification (version 2025-11-25). The API may change in future releases. See the [Experimental APIs](../../experimental.md) documentation for details on working with experimental APIs. The Model Context Protocol (MCP) supports [task-based execution] for long-running operations. Tasks enable a "call-now, fetch-later" pattern where clients can initiate operations that may take significant time to complete, then poll for status and retrieve results when ready. diff --git a/docs/experimental.md b/docs/experimental.md new file mode 100644 index 000000000..1ad75a9b4 --- /dev/null +++ b/docs/experimental.md @@ -0,0 +1,70 @@ +--- +title: Experimental APIs +author: MackinnonBuck +description: Working with experimental APIs in the MCP C# SDK +uid: experimental +--- + +The Model Context Protocol C# SDK uses the [`[Experimental]`](https://learn.microsoft.com/dotnet/api/system.diagnostics.codeanalysis.experimentalattribute) attribute to mark APIs that are still in development and may change without notice. For more details on the SDK's versioning policy around experimental APIs, see the [Versioning](versioning.md) documentation. + +## Suppressing experimental diagnostics + +When you use an experimental API, the compiler produces a diagnostic (e.g., `MCPEXP001`) to ensure you're aware the API may change. If you want to use the API, suppress the diagnostic in one of these ways: + +### Project-wide suppression + +Add the diagnostic ID to `` in your project file: + +```xml + + $(NoWarn);MCPEXP001 + +``` + +### Per-call suppression + +Use `#pragma warning disable` around specific call sites: + +```csharp +#pragma warning disable MCPEXP001 // The Tasks feature is experimental per the MCP specification and is subject to change. +tool.Execution = new ToolExecution { ... }; +#pragma warning restore MCPEXP001 +``` + +For a full list of experimental diagnostic IDs and their descriptions, see the [list of diagnostics](list-of-diagnostics.md#experimental-apis). + +## Serialization behavior + +Experimental properties on protocol types are fully serialized and deserialized when using the SDK's built-in serialization via . This means experimental data is transmitted on the wire even if your application code doesn't directly interact with it, preserving protocol compatibility. + +The behavior of experimental properties differs depending on whether you use [reflection-based or source-generated](https://learn.microsoft.com/dotnet/standard/serialization/system-text-json/source-generation) serialization: + +- **Reflection-based serialization** (the default when no `JsonSerializerContext` is used): Experimental properties are included. No special configuration is needed. +- **Source-generated serialization** (using a custom `JsonSerializerContext`): Experimental properties are **not** included in your context's serialization contract. This is by design, as it protects your compiled code against binary breaking changes to experimental APIs. + +This means that switching between reflection-based and source-generated serialization can silently change which properties are serialized. To avoid this, source-generation users should configure a `TypeInfoResolverChain` as described below. + +### Custom `JsonSerializerContext` + +If you define your own `JsonSerializerContext` that includes MCP protocol types, configure a `TypeInfoResolverChain` so the SDK's resolver handles MCP types: + +```csharp +using ModelContextProtocol; + +JsonSerializerOptions options = new() +{ + TypeInfoResolverChain = + { + McpJsonUtilities.DefaultOptions.TypeInfoResolver!, + MyCustomContext.Default, + } +}; +``` + +By placing the SDK's resolver first, MCP types are serialized using the SDK's contract (which includes experimental properties), while your custom context handles your own types. This is recommended even if you aren't currently using experimental APIs, since it ensures your serialization configuration remains correct as new experimental properties are introduced or as you adopt experimental features in the future. + +## See also + +- [Versioning](versioning.md) +- [List of diagnostics](list-of-diagnostics.md#experimental-apis) +- [Tasks](concepts/tasks/tasks.md) (an experimental feature) diff --git a/docs/toc.yml b/docs/toc.yml index 84cf4de03..9b70938f2 100644 --- a/docs/toc.yml +++ b/docs/toc.yml @@ -5,5 +5,7 @@ items: href: api/ModelContextProtocol.yml - name: Versioning href: versioning.md +- name: Experimental APIs + href: experimental.md - name: GitHub href: https://github.com/ModelContextProtocol/csharp-sdk