Skip to content

Commit 410cc0d

Browse files
authored
Add v2 feedback issue template (#3037)
1 parent ca10dad commit 410cc0d

3 files changed

Lines changed: 61 additions & 1 deletion

File tree

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
name: v2 feedback
2+
description: Bugs, API friction, or docs gaps in v2 of the SDK
3+
title: "[v2] "
4+
labels: ["v2-alpha"]
5+
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for trying v2. Anything that broke, surprised you, or slowed you down is useful — API feedback is explicitly welcome while v2 is in pre-release.
11+
12+
Docs: https://py.sdk.modelcontextprotocol.io/v2/ · Migration from v1: https://py.sdk.modelcontextprotocol.io/v2/migration/
13+
14+
- type: textarea
15+
id: what
16+
attributes:
17+
label: What happened?
18+
description: What did you do, and what went wrong (or felt wrong)? Paste error output verbatim if there is any.
19+
validations:
20+
required: true
21+
22+
- type: textarea
23+
id: expected
24+
attributes:
25+
label: What did you expect?
26+
validations:
27+
required: false
28+
29+
- type: textarea
30+
id: repro
31+
attributes:
32+
label: Code to reproduce
33+
description: The smallest snippet or repository that shows it. For docs feedback, link the page instead.
34+
render: Python
35+
validations:
36+
required: false
37+
38+
- type: input
39+
id: version
40+
attributes:
41+
label: SDK version
42+
description: The published version (`pip show mcp`) or commit.
43+
validations:
44+
required: false
45+
46+
- type: dropdown
47+
id: area
48+
attributes:
49+
label: Area
50+
options:
51+
- Server
52+
- Client
53+
- Transports
54+
- Auth
55+
- Documentation
56+
- Migration
57+
- Other
58+
validations:
59+
required: false

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
>
1919
> **v1.x is the only stable release line and remains recommended for production.** It lives on the [`v1.x` branch](https://github.com/modelcontextprotocol/python-sdk/tree/v1.x) and continues to receive critical bug fixes and security patches; see [the v1.x README](https://github.com/modelcontextprotocol/python-sdk/blob/v1.x/README.md) for its documentation. `pip` and `uv` don't select a pre-release unless you explicitly request one, so existing installs are unaffected. **If your package depends on `mcp`, add a `<2` upper bound to your version constraint (for example `mcp>=1.27,<2`) before the stable release lands.**
2020
>
21-
> v2 is a major rework of the SDK, both to support the [2026-07-28 MCP specification release](https://blog.modelcontextprotocol.io/posts/2026-07-28-release-candidate/) and to fix long-standing architectural issues. See the [migration guide](https://py.sdk.modelcontextprotocol.io/v2/migration/) for what's changed. Stable v2 is targeted for 2026-07-27, alongside the spec release. Try the pre-releases and tell us what breaks: [#python-sdk-dev on the MCP Contributors Discord](https://discord.gg/6CSzBmMkjX).
21+
> v2 is a major rework of the SDK, both to support the [2026-07-28 MCP specification release](https://blog.modelcontextprotocol.io/posts/2026-07-28-release-candidate/) and to fix long-standing architectural issues. See the [migration guide](https://py.sdk.modelcontextprotocol.io/v2/migration/) for what's changed. Stable v2 is targeted for 2026-07-27, alongside the spec release. Try the pre-releases and [tell us what breaks](https://github.com/modelcontextprotocol/python-sdk/issues/new?template=v2-feedback.yaml) — or discuss in [#python-sdk-dev on the MCP Contributors Discord](https://discord.gg/6CSzBmMkjX).
2222
2323
## Documentation
2424

docs/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
!!! info "You are viewing the in-development v2 documentation"
44
For the current stable release, see the [v1.x documentation](https://py.sdk.modelcontextprotocol.io/).
5+
Trying v2? [Tell us what you find](https://github.com/modelcontextprotocol/python-sdk/issues/new?template=v2-feedback.yaml) — it is the most useful thing you can do for the SDK right now.
56

67
The **Model Context Protocol (MCP)** lets applications provide context to LLMs in a standardized way, separating the concern of *providing* context from the LLM interaction itself.
78

0 commit comments

Comments
 (0)