From 739e0e978f0a4a77877d0c4810a88f1387f3d743 Mon Sep 17 00:00:00 2001 From: Jeff Handley Date: Mon, 23 Feb 2026 20:50:31 -0800 Subject: [PATCH 1/2] Add Roadmap document and navigation link Create docs/roadmap.md with spec implementation tracking, current focus areas, milestones, and versioning references. Add top-level Roadmap link in docs/toc.yml before the Versioning entry. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- docs/roadmap.md | 27 +++++++++++++++++++++++++++ docs/toc.yml | 2 ++ 2 files changed, 29 insertions(+) create mode 100644 docs/roadmap.md diff --git a/docs/roadmap.md b/docs/roadmap.md new file mode 100644 index 000000000..dca2c8cef --- /dev/null +++ b/docs/roadmap.md @@ -0,0 +1,27 @@ +--- +title: C# SDK Roadmap +author: jeffhandley +description: ModelContextProtocol C# SDK roadmap and spec implementation tracking +uid: roadmap +--- +## Spec Implementation Tracking + +The C# SDK tracks implementation of MCP spec components using the [modelcontextprotocol project boards](https://github.com/orgs/modelcontextprotocol/projects), with a dedicated project board for each spec revision. For example, see the [2025-11-25 spec revision board](https://github.com/orgs/modelcontextprotocol/projects/26). + +## Current Focus Areas + +### Next Spec Revision + +The next MCP specification revision is being developed in the [protocol repository](https://github.com/modelcontextprotocol/modelcontextprotocol). The C# SDK already has experimental support for [Tasks](concepts/tasks/tasks.md), which will be updated as the specification is revised. + +### Feedback and End-to-End Scenarios + +The C# SDK team is actively responding to feedback and continuing to explore end-to-end scenarios for opportunities to add more APIs that implement common patterns. + +## Milestones + +See the [milestones page](https://github.com/modelcontextprotocol/csharp-sdk/milestones) to see which issues and features are being planned for future versions. + +## Versioning + +For more information about the C# SDK's approach to versioning, breaking changes, and support, see the [Versioning](versioning.md) documentation. diff --git a/docs/toc.yml b/docs/toc.yml index 9b70938f2..e09c4b54c 100644 --- a/docs/toc.yml +++ b/docs/toc.yml @@ -3,6 +3,8 @@ items: href: concepts/index.md - name: API Reference href: api/ModelContextProtocol.yml +- name: Roadmap + href: roadmap.md - name: Versioning href: versioning.md - name: Experimental APIs From 3ba6e831ac6c5da3cdcd500bb00325fd259016be Mon Sep 17 00:00:00 2001 From: Jeff Handley Date: Mon, 23 Feb 2026 20:59:36 -0800 Subject: [PATCH 2/2] Update docs/roadmap.md Co-authored-by: Stephen Toub --- docs/roadmap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/roadmap.md b/docs/roadmap.md index dca2c8cef..5cf9c8550 100644 --- a/docs/roadmap.md +++ b/docs/roadmap.md @@ -12,7 +12,7 @@ The C# SDK tracks implementation of MCP spec components using the [modelcontextp ### Next Spec Revision -The next MCP specification revision is being developed in the [protocol repository](https://github.com/modelcontextprotocol/modelcontextprotocol). The C# SDK already has experimental support for [Tasks](concepts/tasks/tasks.md), which will be updated as the specification is revised. +The next MCP specification revision is being developed in the [protocol repository](https://github.com/modelcontextprotocol/modelcontextprotocol). The C# SDK already has experimental support for [Tasks](concepts/tasks/tasks.md) (experimental in the specification), which will be updated as the specification is revised. ### Feedback and End-to-End Scenarios