The ModelContextProtocol specification continues to evolve rapidly, and it's important for the C# SDK to remain current with specification additions and updates. To enable this, 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 C# ModelContextProtocol SDK packages:
- 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.
- Bugs will be fixed in either:
- A PATCH release against the latest MAJOR.MINOR version within the latest MAJOR version only.
- A MINOR release against the latest MAJOR version within the latest MAJOR version only.
- Bugs deemed by the maintainers to be critical or blocking will be fixed in both:
- A PATCH release against the latest MAJOR version, within its latest MAJOR.MINOR version.
- 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 2.0.0 SDK implements the 2026-07-28 MCP specification revision while retaining compatibility with peers that negotiate 2025-11-25 and earlier. A v2 client automatically uses the legacy initialize handshake when it connects to a down-level server, and a v2 server continues to accept that handshake from a down-level client. Stable, non-deprecated 1.x APIs continue to work without modification on those connections.
Tasks exception
For protocol-level compatibility, Tasks are the sole documented exception. The v2
Tasks extension replaces the experimental Tasks implementation from v1.3.0 and
v1.4.x and is available only after negotiating 2026-07-28 or later. It has no API or wire
compatibility with the down-level implementation: a v2 Tasks client or server does not use
tasks/* on a 2025-11-25 connection.
Breaking changes
The 2.0.0 SDK will be a stable release after its general availability release. The SDK follows Semantic Versioning, and breaking changes against stable releases require increments to the MAJOR version.
If feasible, the SDK will support all versions of the MCP spec. However, if breaking changes to the spec make this infeasible, preference will be given to the most recent version of the MCP spec. This would be considered a breaking change necessitating a new 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:
- Support multiple contents in sampling results
- Support multiple contents in sampling results (using DTOs)
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.
- 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. - 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. - 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.