Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/schema.json
600 changes: 295 additions & 305 deletions docs/docs.json

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion docs/specification/draft/basic/lifecycle.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,10 @@ The client **MUST** initiate this phase by sending an `initialize` request conta
"listChanged": true
},
"sampling": {},
"elicitation": {}
"elicitation": {},
"userInteraction": {
"types": ["ua"]
}
},
"clientInfo": {
"name": "ExampleClient",
Expand Down Expand Up @@ -150,6 +153,7 @@ Key capabilities include:
| Client | `roots` | Ability to provide filesystem [roots](/specification/draft/client/roots) |
| Client | `sampling` | Support for LLM [sampling](/specification/draft/client/sampling) requests |
| Client | `elicitation` | Support for server [elicitation](/specification/draft/client/elicitation) requests |
| Client | `userInteraction` | Support for [user interactions](/specification/draft/client/user_interaction) |
| Client | `experimental` | Describes support for non-standard experimental features |
| Server | `prompts` | Offers [prompt templates](/specification/draft/server/prompts) |
| Server | `resources` | Provides readable [resources](/specification/draft/server/resources) |
Expand Down
2 changes: 2 additions & 0 deletions docs/specification/draft/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ the previous revision, [2025-03-26](/specification/2025-03-26).
4. Clarified [security considerations](https://modelcontextprotocol.io/specification/draft/basic/authorization#3-security-considerations) and best practices in the authorization spec and in a new [security best practices page](https://modelcontextprotocol.io/specification/draft/basic/security_best_practices).
5. Added support for **[elicitation](/specification/draft/client/elicitation)**, enabling
servers to request additional information from users during interactions. (PR [#382](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/382))
6. Added support for **[user interaction](/specification/draft/client/user_interaction)** (PR
[#475](https://github.com/modelcontextprotocol/specification/pull/475))

## Other schema changes

Expand Down
Loading