chore(deps): update dependency mcp to v1.28.1#31
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
July 17, 2025 23:29
9ab977b to
cfd87fa
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
July 22, 2025 20:40
cfd87fa to
15990ee
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
July 24, 2025 19:48
15990ee to
52ab755
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
August 1, 2025 01:06
52ab755 to
bd111e3
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
August 7, 2025 21:45
bd111e3 to
d8e918b
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
August 14, 2025 17:29
d8e918b to
a126e61
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
August 22, 2025 14:40
a126e61 to
7bf75c9
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
September 13, 2025 19:03
7bf75c9 to
8f8a2ff
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
September 18, 2025 13:49
8f8a2ff to
d90d2ec
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
September 25, 2025 19:28
d90d2ec to
797bea1
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
October 2, 2025 20:29
797bea1 to
144bb04
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
2 times, most recently
from
October 16, 2025 22:53
f70ed56 to
a582f42
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
October 24, 2025 04:48
a582f42 to
6b8505e
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
October 31, 2025 04:55
6b8505e to
8608991
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
December 2, 2025 14:54
1468a2e to
305d0f5
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
3 times, most recently
from
December 9, 2025 20:47
9451641 to
d71c75b
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
December 12, 2025 18:02
d71c75b to
765c900
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
December 19, 2025 15:39
765c900 to
fcc0218
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
January 24, 2026 21:04
fcc0218 to
4072f81
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
March 13, 2026 17:07
4072f81 to
f99368e
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
April 2, 2026 18:33
f99368e to
26634b6
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
April 30, 2026 16:41
26634b6 to
9f081ca
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
May 8, 2026 18:07
9f081ca to
24bae28
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
May 29, 2026 18:03
24bae28 to
a128ebe
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
June 16, 2026 23:14
a128ebe to
a211f41
Compare
renovate
Bot
force-pushed
the
renovate/mcp-1.x-lockfile
branch
from
June 26, 2026 16:59
a211f41 to
3a5aed2
Compare
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.
This PR contains the following updates:
1.23.1→1.28.1Release Notes
modelcontextprotocol/python-sdk (mcp)
v1.28.1Compare Source
What's Changed
Full Changelog: modelcontextprotocol/python-sdk@v1.28.0...v1.28.1
v1.28.0Compare Source
Deprecations
Two API surfaces now emit
DeprecationWarningahead of their removal in v2. Nothing is removed in 1.x, and the warnings fire only when the deprecated API is called - importing the modules stays silent.mcp.client.websocket.websocket_clientandmcp.server.websocket.websocket_server. WebSocket was never part of the MCP specification; use the streamable HTTP transport instead. The TypeScript SDK has likewise removed its WebSocket client for v2 (modelcontextprotocol/typescript-sdk#1783).ClientSession.experimental,Server.experimental,ServerSession.experimental, and theexperimental_task_handlers=kwarg onClientSession. Tasks (SEP-1686) were removed from the MCP specification and are expected to return as a separate MCP extension.If your test suite runs with
filterwarnings = ["error"]and exercises these paths, add a scoped ignore such asignore:The experimental tasks API is deprecated:DeprecationWarningorignore:The WebSocket .* transport is deprecated:DeprecationWarning.See #2828 for full details.
What's Changed
New Contributors
Full Changelog: modelcontextprotocol/python-sdk@v1.27.2...v1.28.0
v1.27.2Compare Source
What's Changed
Full Changelog: modelcontextprotocol/python-sdk@v1.27.1...v1.27.2
v1.27.1Compare Source
What's Changed
Full Changelog: modelcontextprotocol/python-sdk@v1.27.0...v1.27.1
v1.27.0Compare Source
What's Changed
requestsdependency from simple-chatbot example by @maxisbey in #1959New Contributors
Full Changelog: modelcontextprotocol/python-sdk@v1.26.0...v1.27.0
v1.26.0Compare Source
What's Changed
Full Changelog: modelcontextprotocol/python-sdk@v1.25.0...v1.26.0
v1.25.0Compare Source
Branching Update
Starting with this release, the repository has adopted a new branching strategy for v2 development:
main— v2 development (breaking changes)v1.x— v1 maintenance (security and critical bug fixes only, with very rare feature additions ported frommain)Users who need to stay on v1.x should pin to
mcp>=1.25,<2.The current plan is to work through v2 and have it released some time in Q1. This also relies on the next upcoming spec release which will heavily change how the transport layer works, which in turn will guide a lot of how we architect v2.
What's Changed
New Contributors
Full Changelog: modelcontextprotocol/python-sdk@v1.24.0...v1.25.0
v1.24.0Compare Source
What's Changed
streamable_http_clientwhich acceptshttpx.AsyncClientinstead ofhttpx_client_factoryby @Kludex in #1177New Contributors
Full Changelog: modelcontextprotocol/python-sdk@v1.23.3...v1.24.0
v1.23.3Compare Source
What's Changed
New Contributors
Full Changelog: modelcontextprotocol/python-sdk@v1.23.2...v1.23.3
v1.23.2Compare Source
What's Changed
New Contributors
Full Changelog: modelcontextprotocol/python-sdk@v1.23.1...v1.23.2
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.