All NuGet packages that compose the SDK follow Semantic Versioning 2.0.0 with MAJOR.MINOR.PATCH version numbers, and optional prerelease versions.

Given a version number MAJOR.MINOR.PATCH, the package versions increment the:

  • MAJOR version when incompatible API changes are included
  • MINOR version when functionality is added in a backward-compatible manner
  • PATCH version when backward-compatible bug fixes are included

A prerelease version indicates that the version is unstable and might not satisfy the intended compatibility requirements.

Supported versions

The following support policy applies to stable 1.x C# ModelContextProtocol SDK packages:

  1. New functionality and additive APIs will be introduced in MINOR releases within the current MAJOR version only.
    • New functionality will not be added to an earlier MAJOR version.
  2. Bugs will be fixed in either:
    1. A PATCH release against the latest MAJOR.MINOR version within the latest MAJOR version only.
    2. A MINOR release against the latest MAJOR version within the latest MAJOR version only.
  3. Bugs deemed by the maintainers to be critical or blocking will be fixed in both:
    1. A PATCH release against the latest MAJOR version, within its latest MAJOR.MINOR version.
    2. A PATCH release against one previous MAJOR version, within its latest MAJOR.MINOR version.

Experimental APIs

MAJOR or MINOR version updates might introduce or alter APIs annotated as [Experimental]. This attribute indicates that an API is experimental and might change at any time—including within PATCH or MINOR version updates.

Experimental APIs require suppression of diagnostic codes specific to the MCP SDK APIs, using an MCP prefix.

MCP specification compatibility

The 1.x SDK supports the 2024-11-05, 2025-03-26, 2025-06-18, and 2025-11-25 MCP specification revisions. 2025-11-25 is used when the client or server does not configure a protocol revision. During initialization, clients and servers negotiate one of these revisions, and protocol behavior follows the negotiated revision.

The Tasks APIs in 1.x are experimental (MCPEXP001) and implement the Tasks feature described by the 2025-11-25 specification revision. They offer no compatibility guarantees and can change without notice.

Breaking changes

The 1.x SDK is stable. The SDK follows Semantic Versioning, and breaking changes against stable APIs require an increment to the MAJOR version.

All releases are posted to https://github.com/modelcontextprotocol/csharp-sdk/releases with release notes. Issues and pull requests labeled with breaking-change are highlighted in the corresponding release notes.

Specification schema changes

If the MCP specification changes the schema for JSON payloads, the C# SDK might use the McpSession.NegotiatedProtocolVersion to dynamically change the payload schema, potentially using internal data transfer objects (DTOs) to achieve the needed deserialization behavior. These techniques will be applied where feasible to maintain backward-compatibility and forward-compatibility between MCP specification versions.

For illustrations of how this could be achieved, see the following prototypes:

Obsolete APIs

If APIs within the SDK become obsolete due to changes in the MCP spec or other evolution of the SDK's APIs, the [Obsolete] attribute will be applied to the affected APIs.

  1. Within a MINOR version update, APIs might be marked as [Obsolete] to produce build warnings while the API remains functional. The build warnings will provide guidance specific to the affected APIs.
  2. Within a MAJOR version update, APIs might be marked as [Obsolete] to produce build errors indicating the API is no longer functional and always throws exceptions. The build errors will provide guidance specific to the affected APIs.
  3. Within a MAJOR version update, obsolete APIs might be removed. API removals are expected to be rare and avoided wherever possible, and [Obsolete] attributes will be applied ahead of the API removal.

Beginning with the 1.0.0 release, all obsoletions will use diagnostic codes specific to the MCP SDK APIs, using an MCP prefix.