Skip to content

Commit 6984dc3

Browse files
committed
Fix typos
1 parent 996f9d1 commit 6984dc3

5 files changed

Lines changed: 14 additions & 14 deletions

File tree

docs/community/feature-lifecycle.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ This policy was adopted via
1616

1717
This policy governs **features** of the MCP core specification: protocol
1818
messages, capabilities, transports, schema types, and normative behavioral
19-
requirements. Tthe revision lifecycle of the specification document itself
20-
(Draft, Current, Final), is defined in the [versioning guide](/docs/learn/versioning).
19+
requirements. The revision lifecycle of the specification document itself
20+
(Draft, Current, Final) is defined in the [versioning guide](/docs/learn/versioning).
2121

2222
## Feature States
2323

@@ -43,14 +43,14 @@ releases. That timeline is governed by the SDK's own revision-support policy.
4343

4444
## Deprecating a Feature
4545

46-
A feature may be proposed for deprecation due to
46+
A feature may be proposed for deprecation when:
4747

4848
- it has been superseded by another feature that covers the same use cases,
4949
- it presents a security, privacy, or interoperability risk that cannot be
5050
mitigated in place,
5151
- ecosystem telemetry or SDK maintainer consensus indicates negligible adoption
5252
relative to its maintenance cost,
53-
- or any other reasons the Core Maintainers seem to deem appropriate.
53+
- or any other reasons the Core Maintainers deem appropriate.
5454

5555
Deprecation is a specification change and therefore requires a SEP per the
5656
[SEP guidelines](/community/sep-guidelines). The deprecation SEP must:
@@ -92,7 +92,7 @@ The minimum deprecation window is counted from that release.
9292
## The Deprecated Registry
9393

9494
[`docs/specification/draft/deprecated.mdx`](/specification/draft/deprecated) is
95-
a single page listing every feature Deprecated or Removed state. It is
95+
a single page listing every feature in a Deprecated or Removed state. It is
9696
the canonical answer to "what is on its way out, and by when," so that an
9797
implementer does not have to reconstruct that picture from deprecation entries
9898
spread across revision changelogs.
@@ -116,7 +116,7 @@ released as Current, Tier 1 SDKs:
116116

117117
1. Once a feature is set for removal, the removal is executed at the discretion
118118
of the Core Maintainers after the minimum deprecation window has elapsed.
119-
2. The removal needs to be documented in the `changelog.mdx` and [registry](#the-deprecated-regsitry)
119+
2. The removal needs to be documented in the `changelog.mdx` and [registry](#the-deprecated-registry).
120120
3. A SEP is required for any change to the original deprecation or removal SEP, for
121121
example extending or shortening the timeline
122122
([Expedited removal](#expedited-removal)) or restoring the feature to Active

docs/docs/learn/versioning.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ the feature remains part of the specification, but is scheduled for removal.
3535
Deprecated features document a migration path (or state that none is required)
3636
and remain in the specification for at least twelve months, or at least
3737
ninety days under the policy's
38-
[expedited-removal exception](/community/feature-lifecycle#expedited-removal)
39-
, before they become eligible for removal, after which they may be **Removed**
38+
[expedited-removal exception](/community/feature-lifecycle#expedited-removal),
39+
before they become eligible for removal, after which they may be **Removed**
4040
in a future revision.
4141

4242
Features that are currently Deprecated are listed in the

docs/specification/draft/basic/transports.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,8 @@ for the [HTTP+SSE transport][http-sse] from protocol version 2024-11-05.
145145
Revision 2026-07-28 changed the behavior of Streamable HTTP. Clients must
146146
ensure they handle backwards compatibility correctly. Changes included:
147147

148-
- Removal of the GET stream endpoint
149-
- Removal of protocol-level session.
148+
- Removal of the GET stream endpoint.
149+
- Removal of protocol-level sessions.
150150

151151
See the [changelog](/specification/draft/changelog) and
152152
[Backward Compatibility](#backward-compatibility-1) below.
@@ -698,7 +698,7 @@ See [Lifecycle: Backward Compatibility][lifecycle-compat] for details.
698698

699699
#### Earlier Streamable HTTP Revisions
700700

701-
Protocol versions `2025-03-26` through [`2025-11-25`](./docs/specification/2025-11-25/basic/transports.mdx)
701+
Protocol versions `2025-03-26` through [`2025-11-25`](/specification/2025-11-25/basic/transports)
702702
also used the Streamable HTTP transport, but in a different shape: servers could assign a session via
703703
the `Mcp-Session-Id` header (terminated with HTTP DELETE), clients could open
704704
a standalone SSE stream with HTTP GET to receive server-initiated messages,
@@ -727,7 +727,7 @@ in addition to the version-negotiation fallback described above.
727727
**Deprecated**: The [HTTP+SSE transport][http-sse] from protocol version
728728
2024-11-05 has been deprecated since protocol version `2025-03-26` and is
729729
classified as Deprecated under the [feature lifecycle
730-
policy](/community/feature-lifecycle#transition)
730+
policy](/community/feature-lifecycle#deprecating-a-feature)
731731
([SEP-2596](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/2596)).
732732
New implementations **SHOULD NOT** adopt it; existing implementations
733733
**SHOULD** migrate to [Streamable HTTP](#streamable-http). It is eligible for

docs/specification/draft/client/sampling.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Clients that support sampling **MUST** declare the `sampling` capability in
9393
<Note>
9494
The `includeContext` parameter values `"thisServer"` and `"allServers"` are
9595
deprecated under the [feature lifecycle
96-
policy](/community/feature-lifecycle#transition)
96+
policy](/community/feature-lifecycle#deprecating-a-feature)
9797
([SEP-2596](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/2596));
9898
they will be removed no later than the Sampling feature itself. Servers
9999
**SHOULD** avoid using these values (e.g. can just omit `includeContext` since

docs/specification/draft/deprecated.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ deprecation notices and changelog entries, which are the normative records.
3131

3232
The HTTP+SSE transport and the `includeContext` values were already described
3333
as deprecated before the lifecycle policy existed; SEP-2596 reclassifies them
34-
as Deprecated under its [transition provisions](/community/feature-lifecycle#transition).
34+
as Deprecated under its [transition provisions](/community/feature-lifecycle).
3535

3636
## Removed
3737

0 commit comments

Comments
 (0)