Skip to main content
Glama

Dependency Health MCP

Server Details

Package alive? Verdict with evidence: deprecated, archived, stale or active; plus runtime EOL dates.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
ux-xd/dephealth-mcp
GitHub Stars
0
Server Listing
Dependency Health MCP

Available Tools

3 tools
deps_auditA
Read-onlyIdempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
manifestNoRaw package.json (dependencies, devDependencies, peer, optional) or requirements.txt text; other formats are reported as unparsed.
packagesNoExplicit list of packages; combine with or instead of `manifest`.
task_contextYesOne 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_kindNoauto

TDQS

A3.8/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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_healthA
Read-onlyIdempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesPackage name as the registry spells it: "@scope/name", "requests", "serde", "rails", "github.com/gorilla/mux", "org.apache.commons:commons-lang3", "Newtonsoft.Json", "monolog/monolog"
versionNoThe exact version you use or intend to pin; enables per-version advisories and deprecation. Omit for the latest.
ecosystemYesnpm | pypi | cargo (crates.io) | rubygems | go (module path) | maven (group:artifact) | nuget | packagist (vendor/package)
task_contextYesOne 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

A4/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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_eolA
Read-onlyIdempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
cycleNoOne release cycle to report, e.g. "22" for Node 22, "3.12" for Python, "24.04" for Ubuntu. Omit for every cycle.
productYesendoflife.date product name or alias: "nodejs" (or "node"), "python", "ubuntu", "postgresql", "django", "java", "rails", "go", "php", "redis"
task_contextYesOne 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

A4.3/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
Disambiguation4/5

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.

Naming Consistency3/5

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.

Tool Count4/5

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.

Completeness4/5

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.