Dependency Health MCP
Server Details
Package alive? Verdict with evidence: deprecated, archived, stale or active; plus runtime EOL dates.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- ux-xd/dephealth-mcp
- GitHub Stars
- 0
- Server Listing
- Dependency Health MCP
Available Tools
3 toolsdeps_auditARead-onlyIdempotentInspect
Health verdict for every package in a manifest or a list, in one call (≤25 packages): deprecated / archived / stale / active / unknown per package with the latest version, release and push ages, advisory counts and replacements, plus a summary. Use when reviewing a repository's package.json or requirements.txt before an upgrade, an audit or a fork decision.
| Name | Required | Description | Default |
|---|---|---|---|
| manifest | No | Raw package.json (dependencies, devDependencies, peer, optional) or requirements.txt text; other formats are reported as unparsed. | |
| packages | No | Explicit list of packages; combine with or instead of `manifest`. | |
| task_context | Yes | One sentence on what the user is ultimately trying to do (the task this call serves). Required; it tunes the result and is how this free service learns what agents need. | |
| manifest_kind | No | auto |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, and idempotentHint, so the safety profile is covered. The description adds useful context beyond annotations: the ≤25-package batching limit, the per-package verdict categories, and the summary output. It does not discuss output ordering, error cases, or how the task_context tunes results, but that is acceptable given the annotations.
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 no wasted words. The main deliverable is front-loaded, the package limit is placed parenthetically, and the use case is stated at the end without repetition of schema details.
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?
There is no output schema, so the description carries the responsibility of conveying return expectations; it does so well by enumerating the verdicts, ages, advisories, replacements, and summary. It also names the manifest formats and the use context. It could be slightly richer about how to interpret the verdict levels, but overall an agent has enough context to invoke it correctly.
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 75%, so the schema already documents most parameters meaningfully. The description adds light semantic glue by tying 'manifest' and 'list' to the manifest/packages parameters, but it does not meaningfully enrich parameter understanding beyond the schema.
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 states a clear purpose: producing a per-package health verdict from a manifest or list, with specific health categories and version/age/advisory details. It implies bulk analysis ('every package... in one call') which helps separate it from the single-package sibling package_health, though it never names that sibling directly.
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?
It explicitly says when to use the tool ('Use when reviewing a repository's package.json or requirements.txt before an upgrade, an audit or a fork decision'). It does not mention when not to use it or name alternatives such as package_health or runtime_eol, so it misses the 'when-not' guidance needed for a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
package_healthARead-onlyIdempotentInspect
Is this package alive? One verdict — deprecated, archived, stale, active or unknown — with the evidence: per-version deprecation from the native registry, yanked/retracted latest release, repository archived and last-push dates, maintainer and dependent counts, advisory ids for the exact version, and what replaced it. Use when choosing, pinning or upgrading a dependency in npm, PyPI, crates.io, RubyGems, Go, Maven, NuGet or Packagist.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Package name as the registry spells it: "@scope/name", "requests", "serde", "rails", "github.com/gorilla/mux", "org.apache.commons:commons-lang3", "Newtonsoft.Json", "monolog/monolog" | |
| version | No | The exact version you use or intend to pin; enables per-version advisories and deprecation. Omit for the latest. | |
| ecosystem | Yes | npm | pypi | cargo (crates.io) | rubygems | go (module path) | maven (group:artifact) | nuget | packagist (vendor/package) | |
| task_context | Yes | One sentence on what the user is ultimately trying to do (the task this call serves). Required; it tunes the result and is how this free service learns what agents need. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, open-world, and idempotent behavior. The description adds meaningful detail beyond those annotations by listing possible verdicts and the concrete evidence categories returned, such as per-version deprecation, yanked/retracted releases, repository push dates, maintainer/dependent counts, and advisory IDs. It does not cover failure modes or response structure, but the added context is substantive.
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 dense but efficient: the opening question frames the verdict, the evidence list is a compact enumeration, and the final sentence gives the invocation context. There is no filler or repetition of schema fields, and the most important information is front-loaded.
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?
Since there is no output schema, the description appropriately carries the return-value burden by naming the verdict categories and the exact evidence an agent should expect. It leaves some details unspecified, such as response structure and error handling, but for a read-only health-check tool the provided information is sufficient for an agent to predict behavior.
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%, with each parameter already documented, including the version parameter's note that omitting it checks the latest. The tool description adds little new parameter-level meaning: it references the exact version, but this is already captured in the schema. A baseline of 3 is appropriate when the schema 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 opens with a concrete question and states exactly what the tool returns: a single verdict among deprecated/archived/stale/active/unknown plus a rich evidence list. This clearly identifies the resource and outcome, though it does not explicitly contrast itself with sibling tools like deps_audit or runtime_eol.
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 explicitly states when to use: 'Use when choosing, pinning or upgrading a dependency' across eight named ecosystems. This is a clear and actionable trigger, but it does not mention when not to use this tool or name alternative sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
runtime_eolARead-onlyIdempotentInspect
Support and end-of-life dates for a runtime, OS, database or framework version from endoflife.date (470+ products): each cycle with a verdict — supported, security-only or eol — the latest patch, LTS flag and days to EOL. Use when deciding which Node, Python, Ubuntu, PostgreSQL, Java, Django… version to target or whether a deployed one is still safe.
| Name | Required | Description | Default |
|---|---|---|---|
| cycle | No | One release cycle to report, e.g. "22" for Node 22, "3.12" for Python, "24.04" for Ubuntu. Omit for every cycle. | |
| product | Yes | endoflife.date product name or alias: "nodejs" (or "node"), "python", "ubuntu", "postgresql", "django", "java", "rails", "go", "php", "redis" | |
| task_context | Yes | One sentence on what the user is ultimately trying to do (the task this call serves). Required; it tunes the result and is how this free service learns what agents need. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already establish readOnly/openWorld/idempotent safety. The description adds useful behavioral context: data comes from an external service (endoflife.date), each cycle includes verdict/patch/LTS/days-to-EOL detail, and task_context tunes results and serves as telemetry for the service. No contradiction with annotations.
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?
Two sentences deliver rich, non-redundant information: the first covers what the tool returns and where the data comes from; the second gives a concrete use-case. No filler or repeated schema 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?
Despite having no output schema, the description enumerates the return payload (verdict, latest patch, LTS flag, days to EOL), states the data source, and gives a context for invocation. Combined with the well-described schema, an agent has enough to select and call it correctly.
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 coverage is 100%, so the structured schema already documents product, cycle, and task_context. The description reinforces the product categories and what outputs cycles contain, but adds no parameter-specific semantics beyond the schema. Baseline 3 is appropriate.
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 specifies the resource: support and end-of-life dates for runtimes, OSes, databases, and frameworks from endoflife.date. It differentiates itself through scope (470+ products, verdicts like supported/security-only/eol) and references sibling-relevant domains like Node, Python, Ubuntu, PostgreSQL, Java, Django.
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?
It gives an explicit 'Use when…' guideline for deciding version targets or checking deployed safety. It does not mention exclusions or directly name sibling tools as alternatives, so it stops short of full when-not guidance.
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
Is this dependency current, licensed, deprecated, or already carrying a CVE?
GitHub repo maintainability verdicts—maintained, slowing, at-risk, abandoned—via MCP.
EOL dates and risk scores for 480+ software products. Check versions, score risk, audit stacks.
npm, PyPI & crates.io intel for AI agents: versions, popularity, deps, health. No API keys.
Related MCP Servers
- AlicenseAqualityCmaintenanceChecks whether software dependencies (npm packages, GitHub Actions, MCP servers, Docker images) are alive, dormant, abandoned, archived, or deleted using dated observations from lastseen.dev.4MIT
- FlicenseNot gradedqualityCmaintenancePackage intelligence for AI coding agents that checks npm and PyPI package health, deprecation, vulnerabilities, bundle size, and compares alternatives.
- AlicenseAqualityBmaintenanceChecks npm and PyPI packages for outdated versions, deprecation status, and breaking changes with cited sources, enabling AI agents to verify dependency freshness.110ISC
- FlicenseNot gradedqualityDmaintenanceProvides product lifecycle, release cycle, and End of Life (EOL) date information from endoflife.date.
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
deps_audit and package_health both deal with package health, but deps_audit is explicitly for batch manifest/list review while package_health is for a single deep-dive verdict. runtime_eol is clearly distinct. The descriptions make the boundaries clear, though the two package-focused tools could still cause minor selection hesitation.
All names use lowercase snake_case, but they follow mixed patterns: deps_audit is action-oriented, while package_health and runtime_eol are noun-state names. The naming is readable and domain-appropriate, but there is no consistent verb_noun convention across the set.
Three tools is on the lower end but appropriate for a focused dependency health server: one batch audit, one single-package health check, and one runtime EOL lookup. The scope is cohesive and each tool has a distinct job, though more specialized helpers could be added.
The core dependency health workflows—auditing a manifest, inspecting an individual package, and checking runtime support status—are covered. A notable gap is the lack of transitive/dependency-tree auditing, since deps_audit only handles a provided list or manifest up to 25 packages, but the primary lifecycle decisions are still supported.