fix(samples): re-lock the server samples on uipath-mcp 0.3.1 - #250
Merged
Merged
Conversation
The five server samples take mcp transitively from the published uipath-mcp, so they could only move once 0.3.1 shipped. All five now lock mcp 1.30.0. uipath-mcp joins the repo's exclude-newer exemptions so sample locks can follow a release inside the two-day window, and mcp-longrunning-server requires Python 3.11 like every other project here, which removes its forked 3.10 resolution that kept mcp 1.9.0 alive. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
There was a problem hiding this comment.
🟢 Approval recommended
No unresolved blocking issues were identified.
Pull request overview
This PR re-locks server samples against uipath-mcp 0.3.1 and aligns dependency-age and Python-version configuration.
Changes:
- Updates locks to the latest MCP and UiPath package versions.
- Exempts
uipath-mcpfrom uv’s package-age filter. - Raises the long-running server’s Python requirement to 3.11.
File summaries
| File | Description |
|---|---|
uv.lock |
Updates lock options and dependency resolution. |
samples/mcp-longrunning-server/pyproject.toml |
Requires Python 3.11. |
samples/mcp-functions-agent/uv.lock |
Updates lock options. |
samples/github-slack-agent/uv.lock |
Updates lock options. |
samples/github-helper-agent/uv.lock |
Updates lock options. |
pyproject.toml |
Adds the uipath-mcp package-age exemption. |
Review details
- Files reviewed: 2/11 changed files
- Comments generated: 0
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
|
radu-mocanu
approved these changes
Sep 15, 2026
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
Follow-up to #249. The five server samples (
mcp-dynamic-server,mcp-functions-server,mcp-longrunning-server,mcp-math-server,mcp-sdk-server) takemcptransitively from the publisheduipath-mcp, so their lockfiles could only move once 0.3.1 was on PyPI. All five now lockmcp1.30.0,uipath-mcp0.3.1,uipath2.14.17 anduipath-runtime0.13.5.Two supporting changes:
uipath-mcpis added to[tool.uv.exclude-newer-package]alongside the other UiPath packages. The repo filters packages younger than two days, and without the exemption the samples resolveuipath-mcp0.3.0 (mcp 1.26.0) until the window passes. Every lockfile's options block updates accordingly.mcp-longrunning-serverrequires Python 3.11 like every other project in the repo. Its>=3.10floor forked the resolution and kept a secondmcp1.9.0 /uipath-mcp0.0.92 entry for 3.10.Verification
server.pyimported cleanlyruff checkpasses🤖 Generated with Claude Code