Skip to main content
Glama

Scan Dependency

scan_dependency
Read-onlyIdempotent

Composite "should I add this npm package to my project" check in ONE call — fans out across deps.dev (license + advisories + version history) and bundlephobia (gzipped/minified bundle size, dependency count, ESM/tree-shake support). Use whenever an agent asks "is X safe / popular / small" or "what does adding lodash cost me". Returns a summary block (is_latest, license, published_at, advisory_count, bundle_kb_min, bundle_kb_gz, dependency_count, has_esm, tree_shakeable), per-advisory detail, links, and a list of recent alternative versions. NPM ecosystem only in v1; PyPI / Maven / Cargo / Go fall under deps.dev:version directly. Partial failures degrade gracefully — bundlephobia's first measurement on a new version can take 5-30s; sources_failed will list it if it times out, the rest still returns.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
packageYesnpm package name. Scoped packages (e.g. "@types/node") are accepted.
versionNoSpecific version to check (e.g., "18.3.1"). Defaults to the latest published version when omitted.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.6/5.0
Behavior5/5

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

Beyond the annotations (read-only, idempotent), the description adds critical behavioral details: the tool fans out across external services, may experience delays (5-30s for bundlephobia), handles partial failures gracefully, and specifies the return structure (summary block, details, links, alternatives).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single paragraph but effectively front-loads the core purpose. It is dense with information but remains readable. A structured format with bullet points could improve scannability, but the current form is acceptable.

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?

Given no output schema, the description fully specifies the return type (summary block with fields, advisory details, links, alternative versions). It also covers limitations (NPM only), timing behavior, and error handling (sources_failed). The tool's full behavior is well-documented.

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?

The schema covers both parameters with 100% coverage, describing package name format and version default. The description minimally adds context by confirming the version default and implying that the package parameter is an npm package, but doesn't significantly enhance understanding beyond the 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's function: a composite check for npm packages, combining license, advisories, version history, and bundle size data from multiple sources. It distinguishes itself by specifying the NPM-only scope in v1 and directing non-NPM packages to another tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly recommends using this tool when an agent asks about a package's safety, popularity, or size, and gives a concrete example ('what does adding lodash cost me'). It also clarifies the NPM-only limitation and mentions partial failure handling.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4/5.0
Disambiguation4/5

Most tools have clearly distinct purposes, with detailed descriptions. However, a few tools like 'discover_tools' and 'suggest_questions' both serve exploratory functions and could cause confusion. Similarly, 'ask_pipeworx' and 'deep_research' overlap in scope but are differentiated by depth and account requirements. Overall, an agent can typically pick the right tool, but a few pairs require careful reading.

Naming Consistency3/5

All names use snake_case and are generally readable, but the convention varies: some are verb_noun (e.g., 'resolve_entity'), some are noun_noun (e.g., 'entity_profile'), and a few are just verbs (e.g., 'remember', 'forget'). The 'polymarket_' prefix helps group related tools, but the diversity in patterns slightly reduces predictability.

Tool Count4/5

With 32 tools, the set is slightly large but justified by the wide range of functionality: data querying, prediction markets, memory, subscriptions, and utilities. Each tool serves a distinct purpose, and the count is not excessive given the server's role as a gateway to thousands of data sources. It feels well-scoped for its domain.

Completeness4/5

The tool set covers most essential operations: querying data, entity profiles, comparisons, subscriptions, memory, and onboarding. Minor gaps exist, such as the lack of a generic subscription for all data changes or a way to list all available data packs directly. However, 'discover_tools' partially addresses this. Overall, the surface is comprehensive for the server's purpose.