chore(mcp-servers): update dependencies across Python, Go, and Rust servers#2629
Merged
crivetimihai merged 2 commits intomainfrom Feb 1, 2026
Merged
chore(mcp-servers): update dependencies across Python, Go, and Rust servers#2629crivetimihai merged 2 commits intomainfrom
crivetimihai merged 2 commits intomainfrom
Conversation
…ervers Update all MCP server dependencies to their latest versions: Python servers (20 servers): - numpy: 2.4.1 → 2.4.2 - orjson: 3.11.5 → 3.11.6 - openai: 2.15.0 → 2.16.0 - mcp: 1.25.0 → 1.26.0 - sentence-transformers: 5.2.0 → 5.2.2 - anthropic: 0.76.0 → 0.77.0 - boto3/botocore: 1.42.34 → 1.42.39 - And various other minor updates Go servers (5 servers): - mcp-go: 0.32.0 → 0.43.2 - spf13/cast: 1.7.1 → 1.10.0 - gopsutil/v3: 3.23.12 → 3.24.5 - golang.org/x/sys: 0.15.0 → 0.40.0 Rust servers (2 servers): - Updated Cargo.lock with latest compatible versions Bug fixes: - mcp_eval_server: Add missing core dependencies (aiohttp, jinja2, psutil) that were incorrectly placed in optional dependency groups - url_to_markdown_server: Fix broken entry point that referenced non-existent server.py module Signed-off-by: Mihai Criveti <crivetimihai@gmail.com>
Add .gitignore files for benchmark-server and pandoc-server to ignore compiled binaries and common build artifacts. Signed-off-by: Mihai Criveti <crivetimihai@gmail.com>
hughhennelly
pushed a commit
to hughhennelly/mcp-context-forge
that referenced
this pull request
Feb 8, 2026
…ervers (IBM#2629) * chore(mcp-servers): update dependencies across Python, Go, and Rust servers Update all MCP server dependencies to their latest versions: Python servers (20 servers): - numpy: 2.4.1 → 2.4.2 - orjson: 3.11.5 → 3.11.6 - openai: 2.15.0 → 2.16.0 - mcp: 1.25.0 → 1.26.0 - sentence-transformers: 5.2.0 → 5.2.2 - anthropic: 0.76.0 → 0.77.0 - boto3/botocore: 1.42.34 → 1.42.39 - And various other minor updates Go servers (5 servers): - mcp-go: 0.32.0 → 0.43.2 - spf13/cast: 1.7.1 → 1.10.0 - gopsutil/v3: 3.23.12 → 3.24.5 - golang.org/x/sys: 0.15.0 → 0.40.0 Rust servers (2 servers): - Updated Cargo.lock with latest compatible versions Bug fixes: - mcp_eval_server: Add missing core dependencies (aiohttp, jinja2, psutil) that were incorrectly placed in optional dependency groups - url_to_markdown_server: Fix broken entry point that referenced non-existent server.py module Signed-off-by: Mihai Criveti <crivetimihai@gmail.com> * chore(mcp-servers): add missing .gitignore files for Go servers Add .gitignore files for benchmark-server and pandoc-server to ignore compiled binaries and common build artifacts. Signed-off-by: Mihai Criveti <crivetimihai@gmail.com> --------- Signed-off-by: Mihai Criveti <crivetimihai@gmail.com> Signed-off-by: hughhennnelly <hughhennelly06@gmail.com>
kcostell06
pushed a commit
to kcostell06/mcp-context-forge
that referenced
this pull request
Feb 24, 2026
…ervers (IBM#2629) * chore(mcp-servers): update dependencies across Python, Go, and Rust servers Update all MCP server dependencies to their latest versions: Python servers (20 servers): - numpy: 2.4.1 → 2.4.2 - orjson: 3.11.5 → 3.11.6 - openai: 2.15.0 → 2.16.0 - mcp: 1.25.0 → 1.26.0 - sentence-transformers: 5.2.0 → 5.2.2 - anthropic: 0.76.0 → 0.77.0 - boto3/botocore: 1.42.34 → 1.42.39 - And various other minor updates Go servers (5 servers): - mcp-go: 0.32.0 → 0.43.2 - spf13/cast: 1.7.1 → 1.10.0 - gopsutil/v3: 3.23.12 → 3.24.5 - golang.org/x/sys: 0.15.0 → 0.40.0 Rust servers (2 servers): - Updated Cargo.lock with latest compatible versions Bug fixes: - mcp_eval_server: Add missing core dependencies (aiohttp, jinja2, psutil) that were incorrectly placed in optional dependency groups - url_to_markdown_server: Fix broken entry point that referenced non-existent server.py module Signed-off-by: Mihai Criveti <crivetimihai@gmail.com> * chore(mcp-servers): add missing .gitignore files for Go servers Add .gitignore files for benchmark-server and pandoc-server to ignore compiled binaries and common build artifacts. Signed-off-by: Mihai Criveti <crivetimihai@gmail.com> --------- Signed-off-by: Mihai Criveti <crivetimihai@gmail.com>
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
Closes #2630
Changes
Python Servers (20 servers updated)
Key dependency updates:
Go Servers (5 servers updated)
Rust Servers (2 servers updated)
Bug Fixes
mcp_eval_server
Added missing core dependencies that were incorrectly placed in optional groups:
aiohttp- used byhealth.py(was inollamaoptional group)jinja2- used bybase_judge.py(was missing entirely)psutil- used byperformance_tools.py(was inbenchmarkoptional group)url_to_markdown_server
Fixed broken entry point:
url-to-markdown-serverwas pointing to non-existentserver.pyserver_fastmcp.pyGo Servers
Added missing
.gitignorefiles for:benchmark-serverpandoc-serverTest plan
--help)