chore(deps): bump rmcp 1.4 -> 1.5 (MCP protocol 2025-11-25)#30
Merged
devwhodevs merged 1 commit intomainfrom Apr 21, 2026
Merged
chore(deps): bump rmcp 1.4 -> 1.5 (MCP protocol 2025-11-25)#30devwhodevs merged 1 commit intomainfrom
devwhodevs merged 1 commit intomainfrom
Conversation
rmcp 1.5.0 (2026-04-16) ships MCP protocol version 2025-11-25 via upstream PR modelcontextprotocol/rust-sdk#802. This is the version Claude Desktop's Cowork and Code-in-Desktop modes require to surface MCP tools; the older 2025-06-18 that rmcp 1.4 topped out on was accepted by the standard chat client but silently filtered out by the agent-mode clients. Smoke-tested locally: initialize handshake now returns protocolVersion "2025-11-25" when the client requests it. Fixes #20.
09afc21 to
fba4b6f
Compare
devwhodevs
added a commit
that referenced
this pull request
Apr 21, 2026
Patch release bundling three post-v1.6.0 fixes: - UTF-8 panic in temporal search (#24, thanks @majkelooo) - Rust 1.95 clippy CI breakage (#29) - rmcp 1.4 -> 1.5 for MCP protocol 2025-11-25, unblocks Claude Desktop Cowork / Code-in-Desktop tool surfacing (#20, #30)
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.
Summary
rmcp1.4.0 → 1.5.0 (released 2026-04-16).2025-11-25via upstream modelcontextprotocol/rust-sdk#802. This is the version Claude Desktop's Cowork and Code-in-Desktop modes require to surface MCP tools.Cargo.toml+Cargo.lockchange (plus the clippy fixes inherited from fix(clippy): satisfy Rust 1.95 unnecessary_sort_by + explicit_counter_loop #29 while that's still unmerged; diff will shrink to just the deps once fix(clippy): satisfy Rust 1.95 unnecessary_sort_by + explicit_counter_loop #29 lands).Fixes #20.
Test plan
cargo build --releasesucceeds (1m38s)cargo clippy -- -D warningscleancargo test --lib— 458 passed, 0 failedinitializehandshake requesting2025-11-25now returnsprotocolVersion: "2025-11-25"(was"2025-06-18"on rmcp 1.4) andserverInfo.version: "1.5.0"brew upgradeStacking note
This branch is based on #29 (
fix/clippy-rust-1.95). Merge #29 first; this PR's diff will automatically reduce to justCargo.toml+Cargo.lockafter rebase-or-merge to main.