Support MCP spec 2026-07-28 across client and servers - #1614
Closed
RhysSullivan wants to merge 8 commits into
Closed
Support MCP spec 2026-07-28 across client and servers#1614RhysSullivan wants to merge 8 commits into
RhysSullivan wants to merge 8 commits into
Conversation
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
executor-marketing | 3220892 | Commit Preview URL Branch Preview URL |
Aug 16 2026, 12:35 PM |
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ✅ Deployment successful! View logs |
executor-cloud | 3220892 | Aug 16 2026, 12:36 PM |
Contributor
Cloudflare previewTorn down — the PR is closed. |
@executor-js/cli
@executor-js/config
@executor-js/execution
@executor-js/sdk
@executor-js/codemode-core
@executor-js/runtime-quickjs
@executor-js/plugin-file-secrets
@executor-js/plugin-graphql
@executor-js/plugin-keychain
@executor-js/plugin-mcp
@executor-js/plugin-onepassword
@executor-js/plugin-openapi
executor
commit: |
Collaborator
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Executor speaks MCP spec 2026-07-28 in both directions. Legacy clients are untouched on their existing code paths — this PR is purely additive routing (part 1 of 2; the follow-up consolidates legacy serving onto SDK v2 and deletes the agents patch).
packages/plugins/mcp): SDK v2; streamable-HTTP connections auto-negotiate the era (server/discoverprobe, legacy fallback); typed v2 error classification; shape probe handles modern-only servers. Fixes the reported failure where executor sent2025-11-25to a modern-only server and was rejected.packages/hosts/mcp): SDK-agnostic core with two thin assemblies — v1 byte-identical for existing paths, new v2 assembly for stateless modern serving. Native elicitation =input_required+ HMAC-signedrequestState(principal+method bound, TTL'd) over the existing pause/resume engine. MCP Apps helpers vendored wire-identical pending upstream ext-apps v2 ([codex] Put typed base URL first in combobox #702).Mcp-Param-<name>.tools/callroutes into DOs for execution affinity via the executionId-keyed owner directory; legacy stays on the untouchedMcpAgentpath. Same cross-bearer 403 contract as legacy.Evidence: full e2e suites green (legacy non-regression); modern support proven live with a
2026-07-28-pinned client (discover → tools/list → execute); the pre-migration client reproduces the reported error byte-for-byte against alegacy: "reject"server while this client connects.Deployment prerequisite (before merge): both workers need the shared continuation-signing secret (≥32 bytes), visible to worker + session DOs:
Follow-up PR: #1611 (consolidation — deletes the 911-line agents patch,
McpAgent, and the v1 assembly).