Skip to content

Commit 581d60c

Browse files
committed
2 parents 4508eb2 + 8e22f64 commit 581d60c

File tree

8 files changed

+839
-188
lines changed

8 files changed

+839
-188
lines changed

docs/legacy/concepts/architecture.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,9 @@ enum ErrorCode {
201201
MethodNotFound = -32601,
202202
InvalidParams = -32602,
203203
InternalError = -32603,
204+
205+
// MCP-specific error codes in the range [-32000, -32099]
206+
UrlElicitationRequired = -32042,
204207
}
205208
```
206209

docs/specification/draft/basic/lifecycle.mdx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,10 @@ The client **MUST** initiate this phase by sending an `initialize` request conta
6464
"listChanged": true
6565
},
6666
"sampling": {},
67-
"elicitation": {},
67+
"elicitation": {
68+
"form": {},
69+
"url": {}
70+
},
6871
"tasks": {
6972
"requests": {
7073
"elicitation": {

docs/specification/draft/changelog.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ the previous revision, [2025-06-18](/specification/2025-06-18).
1414
3. Enhance authorization flows with incremental scope consent via `WWW-Authenticate` ([SEP-835](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/835))
1515
4. Provide guidance on tool names ([SEP-986](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/1603))
1616
5. Update `ElicitResult` and `EnumSchema` to use a more standards-based approach and support titled, untitled, single-select, and multi-select enums ([SEP-1330](https://github.com/modelcontextprotocol/modelcontextprotocol/issues/1330)).
17-
6. Add experimental support for [tasks](/specification/draft/basic/utilities/tasks) to enable tracking durable requests with polling and deferred result retrieval ([SEP-1686](https://github.com/modelcontextprotocol/modelcontextprotocol/issues/1686)).
17+
6. Added support for [URL mode elicitation](/specification/draft/client/elicitation#url-elicitation-requests)([SEP-1036](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/887))
18+
7. Add experimental support for [tasks](/specification/draft/basic/utilities/tasks) to enable tracking durable requests with polling and deferred result retrieval ([SEP-1686](https://github.com/modelcontextprotocol/modelcontextprotocol/issues/1686)).
1819

1920
## Minor changes
2021

0 commit comments

Comments
 (0)