Real-time Python package and vulnerability data for AI coding agents.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Fetter provides a remote Model Context Protocol (MCP) server at https://mcp.fetter.io/mcp that gives AI coding agents real-time access to Python package vulnerability data. Built on fetter, it queries PyPI and OSV to surface known CVEs, CVSS scores, and safe versions so your agent can make informed dependency decisions as it writes code.
Tools:
most_recent_not_vulnerable: find the latest release of a package that is free of known vulnerabilitiesis_vulnerable: check whether a specific pinned version has known CVEslookup: find available versions and their vulnerabilities for any package or specifierThe Fetter MCP server uses the HTTP transport and requires no local installation. Just register the remote URL with your MCP client.
For any other MCP-compatible client, provide the following remote server URL using the HTTP transport:
Once installed, the Fetter MCP tools are available to your AI agent during coding sessions. The agent can call them automatically when adding or auditing dependencies; no explicit tool invocation is required in your prompts.
Example prompts
The agent selects the appropriate tool based on context:
most_recent_not_vulnerable to find a safe versionis_vulnerable for a definitive answerlookup to see affected versionsmost_recent_not_vulnerableFind the most recent version of a package that has no known vulnerabilities. Provide only a package name and the server will search recent releases for a safe version. Useful when pinning a dependency to the latest clean release.
Parameters
package_name β package name only (no version specifier), e.g. "requests"Example Request
Example Response:
is_vulnerableCheck if a specific package version has known vulnerabilities. Requires an exact version specifier. Returns vulnerability IDs, summaries, CVSS scores, severity ratings, and reference URLs.
Parameters
dep_spec β exact version specifier, e.g. "requests==2.31.0"Example Request
Example Response:
lookupLook up a package by name and optional version specifier to find which versions are available and whether they have known vulnerabilities. Supports specifiers such as "requests", "numpy>=2.0", or "flask==3.0.0".
Parameters
dep_specs β package name or version specifiercvss_threshold β filter to vulnerabilities at or above this CVSS score (0β10)max_observed_score β return only the highest CVSS score per version rather than all individual vulnerabilitiescount β limit the number of recent versions checkedretain_passing β include versions with no known vulnerabilities in the resultsExample Request
Example Response:
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/fetter-mcp)<a href="https://allmcps.com/mcp/fetter-mcp"><img src="https://allmcps.com/api/badge/fetter-mcp?style=directory" alt="Fetter MCP on AllMCPs" /></a>