MCP Extensions
MCP extensions are optional additions to the specification that define capabilities beyond the core protocol. Extensions enable functionality that may be modular (e.g., distinct features like authentication), specialized (e.g., industry-specific logic), or experimental (e.g., features being incubated for potential core inclusion). Extensions are identified using a unique extension identifier with the format:{vendor-prefix}/{extension-name}, e.g. io.modelcontextprotocol/oauth-client-credentials. Official extensions use the io.modelcontextprotocol vendor prefix.
Official Extension Repositories
Official extensions live inside the Model Context Protocol GitHub organization in repositories with theext- prefix.
MCP Authorization Extensions
modelcontextprotocol/ext-auth
Extensions for supplementary authorization mechanisms beyond the core
specification.
| Extension | Description |
|---|---|
| OAuth Client Credentials | OAuth 2.0 client credentials flow for machine-to-machine authentication. |
| Enterprise-Managed Authorization | Framework for enterprise environments requiring centralized access control. |
MCP Apps
modelcontextprotocol/ext-apps
Extensions for interactive UI elements in conversational MCP clients.
| Extension | Description |
|---|---|
| MCP Apps | Allows MCP Servers to display interactive UI elements (charts, forms, video players) inline within conversations |
Experimental Extensions
Experimental extensions provide an incubation pathway for Working Groups and Interest Groups to prototype ideas and collaborate on extension concepts before formal SEP submission. Experimental extension repositories live within the MCP GitHub organization with theexperimental-ext- prefix (e.g., experimental-ext-interceptors).
Ground Rules
- Every experimental extension needs to be associated with a Working Group or Interest Group
- Repositories and published packages need to clearly indicate their experimental status (e.g., in the README and package name)
- Core Maintainers retain oversight of experimental extension repositories, including the ability to archive or remove them
Graduation to Official Status
To promote an experimental extension to official status, it goes through the standard SEP process (Extensions Track). Feel free to reference the experimental repository and any reference implementations you built during incubation to demonstrate the extension’s practicality.Creating Extensions
The lifecycle for official extensions follows a SEP-based process. For full details, see SEP-2133: Extensions.- Propose: Create a SEP in the main MCP repository using the standard SEP guidelines with type Extensions Track.
- Implement: Build at least one reference implementation in an official SDK — this is required before the SEP can be reviewed.
- Review: Core Maintainers review the SEP and have final authority over inclusion.
- Publish: Once approved, open a PR to add the extension to the extension repository.
- Adopt: After that, other clients, servers, and SDKs can implement the extension too.
Requirements
- Extension specifications need to use RFC 2119 language (MUST, SHOULD, MAY)
- Extensions must have an associated working group or interest group
SDK Implementation
SDKs can choose to implement extensions, but it’s not required for protocol conformance. SDK maintainers have full autonomy over which extensions they support. Where an SDK does support extensions, SDK documentation should list which extensions are supported.Extensions are always disabled by default and require explicit opt-in from the developer.
Evolution
Extensions evolve independently of the core protocol. Updates are managed by the extension repository maintainers and don’t require core maintainer review. That said, backwards compatibility matters. When you need to change an extension, prefer using capability flags or versioning within the extension settings object rather than creating a new extension identifier. If a breaking change is unavoidable, use a new identifier (e.g.,io.modelcontextprotocol/my-extension-v2).
A breaking change is any modification that would cause existing implementations to fail or behave incorrectly, including:
- Removing or renaming fields
- Changing field types
- Altering the semantics of existing behavior
- Adding new required fields
Negotiation
Clients and servers advertise their support for extensions in theextensions field within their respective capabilities during the initialization handshake.
Client Capabilities
Clients advertise extension support in theinitialize request:
Server Capabilities
Servers advertise extension support in theinitialize response: