Fetter MCP
Server Details
Real-time Python package and vulnerability data for AI coding agents.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- fetter-io/fetter-mcp
- GitHub Stars
- 1
- Server Listing
- Fetter MCP
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.5/5 across 3 of 3 tools scored.
is_vulnerable and lookup both deal with vulnerability status, but is_vulnerable is a direct check for a single exact version while lookup is for browsing package versions and their vulnerabilities. This slight overlap could cause minor confusion, but their distinct scope keeps them separable.
The three tool names use snake_case but follow inconsistent naming patterns: is_vulnerable is a predicate, lookup is an imperative verb, and most_recent_not_vulnerable is a descriptive phrase. This mix is readable but lacks a uniform convention.
Three tools is ideal for a narrow domain like package vulnerability checking, providing essential operations without bloat.
The set covers the core workflows: checking a specific version, exploring version availability and vulnerabilities, and finding the latest safe version. No obvious gaps exist for this domain.
Available Tools
3 toolsis_vulnerableAInspect
Check if a specific package version has known vulnerabilities. Requires an exact version specifier (e.g., 'requests==2.31.0').
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The exact package name and version (e.g., "requests==2.31.0", "numpy==1.24.0"). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It does not mention what the tool returns (e.g., boolean, vulnerability details), whether it makes network requests, or any error conditions. The description only restates the purpose and input constraint, leaving key behaviors undisclosed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, with the primary action stated first and a supporting example second. Every word contributes value; there is no redundancy or unnecessary detail. This is a model of concise, front-loaded documentation.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple, with one parameter and no output schema. The description explains the purpose and input format well, but it does not explicitly state the return value or any edge-case behavior. Given the lack of an output schema, the description should clarify what the agent will receive, making it incomplete in that aspect.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description for the 'name' parameter is already very detailed, providing examples and specifying the exact format. The description adds minimal new meaning beyond reinforcing the 'exact version specifier' requirement, so it aligns with the schema and does not significantly enhance parameter understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Check if') and the resource ('a specific package version'), and even specifies the required input format with an example. This distinguishes it from sibling tools like 'lookup' and 'most_recent_not_vulnerable' by focusing on a particular version's vulnerability status.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for use: when you have an exact package version and need to know if it has known vulnerabilities. It also sets a prerequisite ('Requires an exact version specifier'), which guides the agent on valid inputs. However, it does not explicitly mention alternatives or when not to use this tool, leaving some ambiguity relative to sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lookupBInspect
Look up a package by name and (optionally) version number to find which versions are available and/or have vulnerabilities.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The package name to look up (e.g., "requests", "numpy>=2.0", "flask==3.0.0"). Note that when an exact "==" version is specified, the `limit` and `retain_passing` parameters have no effect. | |
| limit | No | When the name is not an exact version, limit the number of recent versions to check. | |
| cvss_filter | No | CVSS score filter: "all" to show all vulnerabilities, "max" to show only the maximum observed score, or a number (0.0-10.0) to filter by threshold | |
| retain_passing | No | 'When the name is not an exact version, setting this to True will return refernces for all packages, include those with no vulnerabilities (default: false) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden for behavioral disclosure. It mentions the basic lookup functionality but omits any side-effect information (though a lookup is likely read-only), default behavior, or handling of edge cases. The note about exact versions is in the schema but not in the description, so the description alone is under-informative.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, direct sentence with no redundant words or filler. It clearly conveys the core purpose without unnecessary detail, earning top marks for conciseness and structure.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is adequate for a simple lookup but leaves gaps: it doesn't specify the return format (no output schema), the exact semantics of 'and/or', or how the tool behaves with exact version constraints. Given the tool's moderate complexity (4 parameters) and the presence of siblings, a bit more context would be helpful.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description itself does not add parameter-level detail beyond the schema. The schema already provides rich descriptions for name, limit, cvss_filter, and retain_passing, so the tool's description need not repeat them.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('look up') and resource ('a package by name and optionally version'), and clearly states the outcome: finding available versions and/or vulnerabilities. This distinguishes it from sibling tools like is_vulnerable and most_recent_not_vulnerable, which are more targeted.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives no guidance on when to use this tool versus the sibling tools (is_vulnerable, most_recent_not_vulnerable). It does not mention any prerequisites, exclusions, or alternative tools, leaving the agent to infer the appropriate context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
most_recent_not_vulnerableAInspect
Find the most recent version of a package that has no known vulnerabilities.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The package name to look up (e.g., "requests", "numpy", "flask"). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full responsibility for disclosing behavior. It only states the core action and does not reveal what happens when no non-vulnerable version exists, whether the return value is a version string or metadata, how version ordering is determined, or any assumptions about package registries. This lack of detail is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-focused sentence with no wasted words. It immediately conveys the tool's purpose without extraneous content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter tool, the core purpose is clear, but the description lacks important operational details such as return format, error handling (e.g., if no safe version exists), and edge cases. Without an output schema or annotations, these gaps leave the agent with insufficient information for confident invocation in all scenarios.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema covers the only parameter 'name' with a clear description and examples (100% coverage). The tool description adds no extra semantics beyond the schema, so the baseline score of 3 applies, as the schema already does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Find') and the specific resource ('the most recent version of a package that has no known vulnerabilities'), which distinguishes it from sibling tools like 'is_vulnerable' (checks vulnerability status) and 'lookup' (general package lookup). It is not a tautology and conveys a precise purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the use case (obtaining the latest safe version of a package) but provides no explicit guidance on when to choose this tool over siblings or when not to use it. There are no references to alternatives or exclusions, so usage context is only implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Flicense-qualityCmaintenancePackage intelligence for AI coding agents that checks npm and PyPI package health, deprecation, vulnerabilities, bundle size, and compares alternatives.
- Alicense-qualityBmaintenanceProvides software supply-chain intelligence for AI agents, enabling them to query package metadata, versions, downloads, dependencies, and health signals for npm, PyPI, and crates.io packages without API keys.MIT
- AlicenseAqualityAmaintenanceDependency intelligence for AI agents. CVE scanning, health checks, upgrade planning.91572Apache 2.0
- AlicenseBqualityDmaintenanceProvides crowdsourced package intelligence and security alerts for AI coding assistants by analyzing project dependencies and framework co-occurrence. It enables automated project scans, package alternative discovery, and data-driven recommendations across multiple programming ecosystems.1032MIT
Your Connectors
Sign in to create a connector for this server.