UpgradeLens
Server Details
npm/PyPI dependency upgrades: package security, compatibility, target ranking, and migration plans.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mattpicone/upgradelens
- GitHub Stars
- 0
Tool Definition Quality
Average 4.4/5 across 3 of 3 tools scored.
Each tool has a clearly distinct purpose: finding a target, assessing a specific version pair for risk, and producing a migration plan. The descriptions explicitly cross-reference when to use one tool instead of another, so an agent should not confuse them.
All tool names follow the same verb_dependency_upgrade pattern: check, find, and plan. This consistent verb-first naming makes the set predictable and the purpose of each tool easy to infer.
Three tools is appropriate for a focused dependency-upgrade advisory server. Each tool covers one necessary phase of the workflow and none feel redundant or extraneous.
The set covers the core dependency-upgrade workflow: choosing a target, getting a go/no-go decision, and planning migration steps. It does not provide a direct tool for comparing multiple candidates side by side or executing the upgrade, but the tools are explicitly scoped as read-only and advisory, so the gap is minor.
Available Tools
3 toolscheck_dependency_upgradeAssess a known dependency upgrade target (go/no-go)ARead-onlyIdempotentInspect
Use when a coding agent needs a cited go/no-go risk decision without steps before changing an existing npm or PyPI dependency between two exact versions. Returns action_allowed, vulnerability delta, compatibility, EOL, and breaking-change evidence. Use plan_dependency_upgrade instead for ordered migration work. Do not use to choose a target, install a new package, search general docs, or analyze another ecosystem. Read-only and safe to retry.
| Name | Required | Description | Default |
|---|---|---|---|
| package | Yes | Exact registry package name. | |
| runtime | No | ||
| ecosystem | Yes | Package ecosystem. Only npm and pypi are supported. | |
| target_version | Yes | Exact candidate version. | |
| current_version | Yes | Exact installed version. |
Output Schema
| Name | Required | Description |
|---|---|---|
| billing | No | |
| package | No | |
| reasons | No | |
| coverage | No | |
| decision | No | |
| evidence | No | |
| cache_hit | No | |
| ecosystem | No | |
| freshness | No | |
| confidence | No | |
| risk_score | No | |
| next_action | No | |
| compatibility | No | |
| latest_stable | No | |
| version_facts | No | |
| action_allowed | No | |
| claim_evidence | No | |
| repository_url | No | |
| security_delta | No | |
| target_version | No | |
| current_version | No | |
| analysis_version | No | |
| breaking_changes | No | |
| recommended_target | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false. The description adds useful behavioral context: it returns action_allowed, vulnerability delta, compatibility, EOL, and breaking-change evidence, and clarifies that it does not produce migration steps. This goes beyond what annotations alone provide.
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?
Every sentence earns its place: use case, return value summary, alternative tool, exclusions, and safety. The critical context is front-loaded and the description is tight despite covering a lot of ground.
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?
With a rich output schema, detailed annotations, and clear sibling distinctions, the description covers everything needed to select and invoke the tool correctly. It explains what the tool returns, when to use it, when not to use it, and which alternative to prefer.
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 80%, so the schema already documents most parameters. The description reinforces that exact versions are expected ('between two exact versions') but does not add substantial new meaning beyond the schema fields.
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?
States a specific verb and resource: assessing a known npm/PyPI dependency upgrade between two exact versions. It clearly differentiates from plan_dependency_upgrade and explicitly lists exclusions such as choosing a target, installing packages, or analyzing other ecosystems.
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?
Provides explicit when-to-use guidance ('needs a cited go/no-go risk decision without steps'), names the alternative (plan_dependency_upgrade), and lists concrete negative use cases. An agent can route correctly without additional inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
find_safe_upgrade_targetRank upgrade candidates (not a safety verdict; full check required)ARead-onlyIdempotentInspect
Use only when an existing npm or PyPI dependency has an exact current version but no chosen target. Ranks candidates; candidates are not declared safe and require check_dependency_upgrade or plan_dependency_upgrade. Do not use when a target is stated, for a new install, or as authorization to edit files. Read-only and safe to retry.
| Name | Required | Description | Default |
|---|---|---|---|
| package | Yes | Exact registry package name. | |
| ecosystem | Yes | Package ecosystem. Only npm and pypi are supported. | |
| max_major_jump | No | Optional major-version jump cap. 0 = stay in the same major. | |
| current_version | Yes | Exact installed version. | |
| allow_prerelease | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| billing | No | |
| package | No | |
| coverage | No | |
| evidence | No | |
| ecosystem | No | |
| freshness | No | |
| candidates | No | |
| confidence | No | |
| next_action | No | |
| latest_stable | No | |
| action_allowed | No | |
| current_version | No | |
| analysis_version | No | |
| recommended_target | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, idempotent, and non-destructive behavior, and the description reinforces this. It adds valuable context beyond the annotations by clarifying that candidates are not declared safe and require check_dependency_upgrade or plan_dependency_upgrade, which is important behavioral nuance.
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 compact and front-loaded, with clear usage conditions and exclusions in a few sentences. It loses a point because 'Read-only and safe to retry' repeats what the annotations already state, adding slight redundancy.
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?
Given that an output schema exists and annotations cover safety and idempotency, the description provides all necessary invocation context: when to use it, when not to use it, what the output does not guarantee, and which sibling tools should be used instead. Nothing essential is missing.
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 80%, so the schema already documents most parameters. The description adds context about 'exact current version' and the npm/PyPI scope, but it does not meaningfully explain max_major_jump or allow_prerelease beyond the schema. This meets the baseline but does not substantially enrich 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 tool ranks upgrade candidates for existing npm/PyPI dependencies and explicitly distinguishes this from a safety verdict. It references the sibling tools and leaves no ambiguity about what the tool does versus what it does not do.
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 explicit conditions for use: only when an existing dependency has an exact current version but no chosen target. It also states clear exclusions, such as when a target is stated, for new installs, or as authorization to edit files, and directs the agent to the appropriate sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
plan_dependency_upgradePlan a known dependency upgrade (migration/review checklist)ARead-onlyIdempotentInspect
Use when a coding agent needs a migration checklist, refactor actions, ordered review actions, changelog links, or test steps for exact current and target npm/PyPI versions. Use check_dependency_upgrade instead for a go/no-go without steps. Do not use to choose a target, install a package, or provide a general tutorial. Read-only and safe to retry.
| Name | Required | Description | Default |
|---|---|---|---|
| package | Yes | Exact registry package name. | |
| runtime | No | ||
| ecosystem | Yes | Package ecosystem. Only npm and pypi are supported. | |
| target_version | Yes | Exact candidate version. | |
| current_version | Yes | Exact installed version. |
Output Schema
| Name | Required | Description |
|---|---|---|
| billing | No | |
| package | No | |
| reasons | No | |
| coverage | No | |
| decision | No | |
| evidence | No | |
| cache_hit | No | |
| ecosystem | No | |
| freshness | No | |
| confidence | No | |
| risk_score | No | |
| next_action | No | |
| compatibility | No | |
| latest_stable | No | |
| version_facts | No | |
| action_allowed | No | |
| changelog_urls | No | |
| claim_evidence | No | |
| repository_url | No | |
| security_delta | No | |
| target_version | No | |
| current_version | No | |
| analysis_version | No | |
| breaking_changes | No | |
| migration_actions | No | |
| recommended_target | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds 'Read-only and safe to retry,' which largely repeats those annotations rather than adding new behavioral context like auth needs or return-format caveats. Since the bar is lower with annotations and no contradiction exists, a 3 is appropriate.
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?
Three sentences, each earning its place: the first defines the deliverable, the second routes to the sibling, the third lists exclusions. Information is front-loaded with the most important condition first and no redundancy. This is a model of concise, structured tool 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?
For a tool at this complexity (5 params, nested runtime object, output schema), the description covers trigger conditions, deliverable contents, alternative tool, and explicit non-goals. The output schema handles return-value details, and annotations cover safety, so nothing needed for correct invocation is missing. Complete.
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 covers 80% of the parameters with clear descriptions (exact package name, ecosystem enum with only npm/pypi, exact current/target versions). The description reinforces that versions are exact and tied to npm/PyPI, adding marginal clarity over the schema. Baseline 3 holds because the schema does the heavy lifting and the description doesn't add new parameter-level semantics beyond naming use cases.
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?
States a specific verb and resource: produces a migration checklist with refactor actions, ordered review actions, changelog links, or test steps for exact npm/PyPI versions. Explicitly contrasts with check_dependency_upgrade, distinguishing itself as the step-by-step planner rather than a go/no-go check. Clear scope that lets an agent select it without opening the schema.
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?
Explicitly states when to use ('Use when a coding agent needs...') and names the alternative ('Use check_dependency_upgrade instead for a go/no-go without steps'). Provides exclusions ('Do not use to choose a target, install a package, or provide a general tutorial'). This is exactly the when/when-not/alternatives guidance that earns a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
Check exact npm/PyPI upgrades for evidence-backed breaking changes; query APIs and components.
npm & PyPI freshness for AI agents: latest version, deprecations, dated breaking-change diffs.
Supply chain risk scoring for npm, PyPI, Cargo, and Go. 9 tools. Behavioral signals.
Detect malicious or vulnerable npm packages: registry search, OSV.dev and GitHub advisory lookups
Related MCP Servers
- AlicenseAqualityBmaintenanceChecks npm and PyPI packages for outdated versions, deprecation status, and breaking changes with cited sources, enabling AI agents to verify dependency freshness.110ISC
- AlicenseAqualityAmaintenanceDependency intelligence for AI agents. CVE scanning, health checks, upgrade planning.95172Apache 2.0

EVIDIQ Lineageofficial
AlicenseNot gradedqualityBmaintenanceDeterministic supply-chain provenance, SBOM/AI-BOM generation, and dependency risk analysis for npm and PyPI packages, with 14 security rules and verifiable reports.1MIT- AlicenseAqualityBmaintenanceSupply chain risk scoring for npm, PyPI, and GitHub repos81067MIT