chore(deps): Update dependency fastmcp to v3 [SECURITY] - #294
Open
renovate[bot] wants to merge 1 commit into
Open
renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
renovate
Bot
force-pushed
the
renovate/pypi-fastmcp-vulnerability
branch
from
April 21, 2026 18:56
32731b8 to
ef5ab99
Compare
renovate
Bot
force-pushed
the
renovate/pypi-fastmcp-vulnerability
branch
2 times, most recently
from
April 27, 2026 21:55
ef5ab99 to
5a7d117
Compare
renovate
Bot
force-pushed
the
renovate/pypi-fastmcp-vulnerability
branch
from
May 18, 2026 17:02
5a7d117 to
81eb82e
Compare
renovate
Bot
force-pushed
the
renovate/pypi-fastmcp-vulnerability
branch
from
June 11, 2026 14:03
81eb82e to
7b5aa75
Compare
renovate
Bot
force-pushed
the
renovate/pypi-fastmcp-vulnerability
branch
from
July 20, 2026 23:05
7b5aa75 to
6dcece4
Compare
renovate
Bot
force-pushed
the
renovate/pypi-fastmcp-vulnerability
branch
from
July 30, 2026 19:00
6dcece4 to
4b79439
Compare
renovate
Bot
force-pushed
the
renovate/pypi-fastmcp-vulnerability
branch
from
August 12, 2026 00:17
4b79439 to
f7b9600
Compare
renovate
Bot
force-pushed
the
renovate/pypi-fastmcp-vulnerability
branch
4 times, most recently
from
August 22, 2026 16:47
042d1a3 to
82a966d
Compare
renovate
Bot
force-pushed
the
renovate/pypi-fastmcp-vulnerability
branch
2 times, most recently
from
September 3, 2026 02:03
c6ef6a8 to
2a19778
Compare
renovate
Bot
force-pushed
the
renovate/pypi-fastmcp-vulnerability
branch
from
September 7, 2026 16:13
2a19778 to
57a1167
Compare
renovate
Bot
force-pushed
the
renovate/pypi-fastmcp-vulnerability
branch
2 times, most recently
from
September 18, 2026 21:53
9508978 to
a25a8c5
Compare
renovate
Bot
force-pushed
the
renovate/pypi-fastmcp-vulnerability
branch
from
September 24, 2026 23:52
a25a8c5 to
ef56c76
Compare
This branch has not been deployed
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:
2.14.5→3.2.0FastMCP has a Command Injection vulnerability - Gemini CLI
CVE-2025-64340 / GHSA-m8x7-r2rg-vh5g
More information
Details
Server names containing shell metacharacters (e.g.,
&) can cause command injection on Windows when passed tofastmcp install claude-codeorfastmcp install gemini-cli. These install paths usesubprocess.run()with a list argument, but on Windows the target CLIs often resolve to.cmdwrappers that are executed throughcmd.exe, which interprets metacharacters in the flattened command string.PoC:
On Windows, this opens Calculator via the
&calcin the server name.Impact:
Arbitrary command execution with the privileges of the user running
fastmcp install. Affects Windows hosts where the target CLI (one of claude, gemini) is installed as a.cmdwrapper. Does not affect macOS/Linux, and does not affect config-file-based install targets (cursor, goose, mcp-json).Patched in #3522 by validating server names to reject shell metacharacters.
Severity
CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:HReferences
This data is provided by the GitHub Advisory Database (CC-BY 4.0).
FastMCP: Missing Consent Verification in OAuth Proxy Callback Facilitates Confused Deputy Vulnerabilities
CVE-2026-27124 / GHSA-rww4-4w9c-7733
More information
Details
Summary
While testing the GitHubProvider OAuth integration, which allows authentication to a FastMCP MCP server via a FastMCP OAuthProxy using GitHub OAuth, it was discovered that the FastMCP OAuthProxy does not properly validate the user's consent upon receiving the authorization code from GitHub. In combination with GitHub’s behavior of skipping the consent page for previously authorized clients, this introduces a Confused Deputy vulnerability.
Technical Details
An adversary can initiate an authentication flow by connecting their malicious MCP client to a benign MCP server using the GitHubProvider OAuth integration. During this flow, the attacker consents to connect their client to the MCP server and, at that point, can capture the GitHub authorization URL they are redirected to after granting consent. The attacker can then lure a victim, who is already logged into GitHub and has previously connected an MCP client to the benign MCP server, to open this captured URL. As a result, the victim’s browser is immediately redirected to the OAuthProxy’s callback endpoint, which does not correctly enforce that this browser has just given consent. The OAuthProxy then redirects the victim’s browser to the malicious MCP client’s callback URL with a valid authorization code. The attacker can exchange this code for an access token to the benign MCP server associated with the victim’s GitHub account, potentially gaining unauthorized access to resources tied to that account.
Although this issue was verified in practice only for the GitHubProvider, a review of the source code, specifically the
OAuthProxy._handle_idp_callbackfunction, shows that the IdP callback handler does not verify whether the browser sending thestateandcodehas previously consented to connecting the client to the server. As long as a validstateandcodepair is provided, the OAuthProxy requests an access token from the IdP and then redirects the user-agent to the client’s callback URL with a newcodeand the correspondingstate, allowing the client to retrieve the access token from the proxy. This pattern causes all OAuth integrations whose IdP allows skipping the consent page to be vulnerable to this attack.Skipping the consent page is not, by itself, a vulnerability on the IdP side. Many providers legitimately skip consent for first-party or previously authorized clients with the same scopes. In this case, the core problem lies in the OAuthProxy callback handler not correctly verifying that the browser issuing the callback request is the same one that has just given the required consent.
Steps to reproduce
In a more realistic scenario, the malicious client could be a public MCP client or a simple web server that logs the received authorization code or token, which the attacker then uses to obtain the access token and connect to the MCP server as the victim.
Recommendation
To mitigate this issue, the OAuthProxy should verify that the browser sending the authorization code has actually given consent for the corresponding client. This can be achieved by setting and validating a consent cookie or similar browser-bound state, as described in the mitigations section for this vulnerability in the MCP specification.
Severity
CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:NReferences
This data is provided by the GitHub Advisory Database (CC-BY 4.0).
FastMCP OpenAPI Provider has an SSRF & Path Traversal Vulnerability
CVE-2026-32871 / GHSA-vv7q-7jx5-f767
More information
Details
Technical Description
The
OpenAPIProviderin FastMCP exposes internal APIs to MCP clients by parsing OpenAPI specifications. TheRequestDirectorclass is responsible for constructing HTTP requests to the backend service.A critical vulnerability exists in the
_build_url()method. When an OpenAPI operation defines path parameters (e.g.,/api/v1/users/{user_id}), the system directly substitutes parameter values into the URL template string without URL-encoding. Subsequently,urllib.parse.urljoin()resolves the final URL.Since
urljoin()interprets../sequences as directory traversal, an attacker controlling a path parameter can perform path traversal attacks to escape the intended API prefix and access arbitrary backend endpoints. This results in authenticated SSRF, as requests are sent with the authorization headers configured in the MCP provider.Vulnerable Code
File:
fastmcp/utilities/openapi/director.pyRoot Cause
urllib.parse.urljoin()interprets../as directory traversalProof of Concept
Step 1: Backend API Setup
Create
internal_api.pyto simulate a vulnerable backend server:Step 2: Exploitation Script
Create
exploit_poc.py:Expected Output
The attacker successfully accessed an endpoint not defined in the OpenAPI specification using the MCP provider's authentication credentials.
Impact Assessment
Severity Justification
Attack Scenarios
Remediation
Recommended Fix
URL-encode all path parameter values before substitution to ensure reserved characters (
/,.,?,#) are treated as literal data, not path delimiters.Updated code for
_build_url()method:Severity
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:HReferences
This data is provided by the GitHub Advisory Database (CC-BY 4.0).
Release Notes
PrefectHQ/fastmcp (fastmcp)
v3.2.0: : Show Don't ToolCompare Source
FastMCP 3.2 is the Apps release. The 3.0 architecture gave you providers and transforms; 3.1 shipped Code Mode for tool discovery. 3.2 puts a face on it: your tools can now return interactive UIs — charts, dashboards, forms, maps — rendered right inside the conversation.
FastMCPApp
FastMCPAppis a new provider class for building interactive applications inside MCP. It separates the tools the LLM sees (@app.ui()) from the backend tools the UI calls (@app.tool()), manages visibility automatically, and gives tool references stable identifiers that survive namespace transforms and server composition — without requiring host cooperation.The UI is built with Prefab, a Python component library that compiles to interactive UIs. You write Python; the user sees charts, tables, forms, and dashboards. FastMCP handles the MCP Apps protocol machinery — renderer resources, CSP configuration, structured content serialization — so you don't have to.
For simpler cases where you just want to visualize data without server interaction, set
app=Trueon any tool and return Prefab components directly:Built-in Providers
Five ready-made providers you add with a single
add_provider()call:Dev Server
fastmcp dev appslaunches a browser-based preview for your app tools — pick a tool, provide arguments, and see the rendered UI without connecting to an MCP host. Includes an MCP message inspector for debugging the protocol traffic.Security
This release includes a significant security hardening pass: SSRF/path traversal prevention, JWT algorithm restrictions, OAuth scope enforcement, CSRF fixes, and more. See the changelog for the full list.
Everything Else
forward_resourceflag on all OAuth providers for IdPs that don't support RFC 8707. Clerk auth provider.FileResourceencoding parameter. SSLverifyparameter.client_log_levelsetting. MCP conformance tests in CI. And contributions from 13 new contributors.What's Changed
New Features 🎉
Breaking Changes⚠️
Enhancements ✨
--config-pathflag to claude-desktop install command by @Sumanshu-Nankana in #3380verifyparameter for SSL certificate configuration by @jlowin in #3487Security 🔒
Fixes 🐞
McpErrorin initialization middleware to prevent fallthrough by @jlowin in #3413fastmcp listandfastmcp callby @jlowin in #3409versionto components in FileSystemProvider by @martimfasantos in #3458refresh_expires_in=0as missing, fall back to 30-day default by @jlowin in #3514encodingparameter toFileResourceby @shulkx in #3580Docs 📚
Examples & Contrib 💡
Dependencies 📦
New Contributors
Full Changelog: PrefectHQ/fastmcp@v3.1.0...v3.2.0
v3.1.1: : 'Tis But a PatchCompare Source
Pins
pydantic-monty<0.0.8to fix a breaking change in Monty that affects code mode. Monty 0.0.8 removed theexternal_functionsconstructor parameter, causingMontySandboxProviderto fail. This patch caps the version so existing installs work correctly.What's Changed
Fixes 🐞
Full Changelog: PrefectHQ/fastmcp@v3.1.0...v3.1.1
v3.1.0: : Code to JoyCompare Source
FastMCP 3.1 is the Code Mode release. The 3.0 architecture introduced providers and transforms as the extensibility layer — 3.1 puts that architecture to work, shipping the most requested capability since launch: servers that can find and execute code on behalf of agents, without requiring clients to know what tools exist.
Code Mode
Standard MCP has two scaling problems. The entire tool catalog loads into context upfront — with a large server, that's tens of thousands of tokens before the LLM reads a single word of the user's request. And every tool call is a round-trip: the LLM calls a tool, the result flows back through the context window, the LLM reasons about it, calls another tool, and so on. Intermediate results that only exist to feed the next step still burn tokens every time.
CodeModeis an experimental transform that solves both. Instead of seeing your tool catalog directly, the LLM gets meta-tools: it searches for relevant tools on demand (using BM25), inspects their schemas, then writes Python that chainscall_tool()calls in a sandbox and returns a final answer. Discovery is staged and targeted; intermediate results never touch the model's context window.Your existing tools don't ch
Configuration
📅 Schedule: (in timezone America/Los_Angeles)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
🤖 Generated with Claude Code