Skip to main content
Glama

package-intel-mcp

Server Details

npm, PyPI & crates.io intel for AI agents: versions, popularity, deps, health. No API keys.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
datakoot/package-intel-mcp
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 3.9/5 across 6 of 6 tools scored. Lowest: 3.2/5.

Server CoherenceA
Disambiguation5/5

Each tool targets a specific aspect of package intelligence: dependencies, downloads, health, info, search, and versions. No two tools overlap in purpose; they are clearly distinct.

Naming Consistency5/5

All tools follow a consistent 'package_<noun>' pattern, using snake_case and a predictable verb_noun structure (e.g., package_dependencies, package_downloads). No deviations or mixed conventions.

Tool Count5/5

Six tools cover the essential dimensions of package evaluation (dependencies, popularity, health, metadata, search, versions) without being excessive or too sparse. Well-scoped for a package intel server.

Completeness4/5

The tool set covers core package operations: lookup, search, version history, dependencies, downloads, and health. Minor gaps include detailed security advisory information (only a summary in health) and perhaps a compare tool, but overall it's quite complete.

Available Tools

6 tools
package_dependenciesAInspect

List the direct dependencies of a specific package version (defaults to latest), via deps.dev. Lets an agent understand what a package pulls in before adding it. Ecosystems: npm, pypi, cargo.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYes
versionNoOptional; defaults to the latest/default version
ecosystemYes
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must fully disclose behavior. It mentions the data source ('via deps.dev') but does not discuss rate limits, data freshness, error handling, or output structure. The description is too brief to cover behavioral traits beyond the basic operation.

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 long, front-loaded with the main action, and contains no extraneous information. Every sentence serves a purpose: stating the action and providing context.

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?

Given the tool's simplicity (3 parameters, no output schema, no annotations), the description covers the basic use case, ecosystems, and data source. It could mention that it only returns direct dependencies (already implied by 'direct') and perhaps response format, but overall it is adequate.

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 33% (only 'version' has a description). The description adds 'Ecosystems: npm, pypi, cargo' which repeats the enum, and 'defaults to latest' aligns with the version schema. However, no additional semantics are provided for 'name' or beyond what schema presents.

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 states the tool lists direct dependencies of a package version, using a specific verb ('List') and resource ('direct dependencies'). It distinguishes from siblings by focusing on dependencies, while sibling tools cover downloads, health, info, search, and versions.

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 provides context on when to use the tool ('Lets an agent understand what a package pulls in before adding it'), but does not explicitly state when not to use it or mention alternatives. The guidance is clear though not exhaustive.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

package_downloadsAInspect

Get popularity/download statistics for a package (recent download counts). Useful for judging how widely used and battle-tested a dependency is. Ecosystems: npm, pypi, cargo.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYes
ecosystemYes
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must disclose behavioral traits. It mentions returning 'recent download counts,' which implies a read-only operation and provides basic context. However, it lacks details on output format, rate limits, or authentication needs.

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: first states the core function, second adds the use case and lists ecosystems. Every word earns its place; no redundancy.

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?

Given the tool's simplicity (2 parameters, no output schema), the description is adequately complete. It states the purpose, the returned data (recent counts), and supported ecosystems. Missing details on exact output structure, but acceptable for a straightforward tool.

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 0%, so the description must compensate. It lists the three ecosystems (npm, pypi, cargo), adding meaning beyond the enum's raw values, but does not describe the 'name' parameter beyond being a package identifier. Partially compensates.

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 states the tool's function ('Get popularity/download statistics'), the resource (a package), and the specific data ('recent download counts'). It also lists supported ecosystems, distinguishing it from sibling tools like package_info or package_dependencies.

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 the tool is 'useful for judging how widely used and battle-tested a dependency is,' providing clear guidance on when to use it. It does not directly contrast with siblings, but the context is sufficient.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

package_healthAInspect

A composite trust/health check for a package an agent is considering: latest-release recency, deprecation status, license present, maintainer count, dependency count, and any known security advisories (via deps.dev). Returns a summary an agent can act on. Ecosystems: npm, pypi, cargo.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYes
ecosystemYes
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It describes what the tool checks (read-only data) and mentions deps.dev as a data source, but does not explicitly state that it is a read-only operation or disclose any side effects, rate limits, or data freshness.

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, front-loaded with purpose and components. No wasted words. Efficiently conveys the tool's function and scope.

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?

For a tool with simple parameters and no output schema, the description covers inputs, factors checked, data source, and return type ('summary'). The summary description could be more specific (e.g., format), but the listed factors provide sufficient context for an agent.

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 0%, so the description must compensate. It adds context that 'ecosystem' is one of npm/pypi/cargo (already in enum) and 'name' is a package name. No additional format or constraint details beyond what the schema provides, making it marginal but adequate for the simple parameters.

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 states it's a composite trust/health check for a package, listing specific factors (recency, deprecation, license, maintainer count, dependency count, security advisories). It distinguishes from sibling tools like package_dependencies or package_info which are more specific.

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 implies usage when an agent needs a quick health overview ('for a package an agent is considering'), but does not explicitly state when to use vs. alternatives or provide exclusions. The context is clear, but not exhaustive.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

package_infoAInspect

Get core metadata for a package: latest version, description, license, homepage, source repository, maintainers, and whether it is deprecated. Use before an agent installs or recommends a dependency. Ecosystems: npm, pypi, cargo.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesPackage/crate name
ecosystemYes
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description implies read-only behavior ('Get core metadata') and lists returned fields, but with no annotations, it could further clarify safety or side effects.

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, 36 words, front-loads purpose and usage, no redundancy.

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?

For a simple 2-param tool with no output schema, the description fully conveys what metadata is returned and when to use it.

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 50% (only 'name' described). The description adds ecosystem context but doesn't detail parameter format or constraints beyond schema.

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 states the tool retrieves core metadata (latest version, description, license, etc.) and distinguishes it from sibling tools like package_dependencies and package_versions.

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?

Explicitly advises using before installing or recommending a dependency, but doesn't mention when not to use it or alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

package_versionsAInspect

List recent released versions of a package with release dates (most recent first). Helps an agent pick a version or check how actively it is maintained. Ecosystems: npm, pypi, cargo.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYes
limitNo
ecosystemYes
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided. The description states it lists 'released versions' with 'release dates' and 'most recent first', which adds basic behavioral context. However, it does not disclose whether pre-release versions are included or any pagination/rate limits, leaving some gaps.

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 very concise: two sentences that cover purpose, usage guidance, and supported ecosystems with no wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description explains what is returned (recent versions with release dates, ordered) but does not mention that the number of results is controllable via the 'limit' parameter. The absence of an output schema makes the description the sole source of return information, and it is slightly incomplete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description repeats the ecosystem enum values but does not explain the 'name' or 'limit' parameters. The 'limit' parameter has a default of 15 but is not mentioned at all. With 0% schema coverage, the description fails to compensate by adding parameter details.

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 states the verb 'list' and resource 'released versions of a package', and distinguishes this tool from siblings like package_dependencies and package_downloads by focusing on version history.

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 second sentence provides explicit context for when to use the tool ('pick a version or check maintenance activity'), but does not mention when not to use it or name alternative tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

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

Try in Browser

Your Connectors

Sign in to create a connector for this server.