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. Added

TDQS

A4.7/5.0
Behavior5/5

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

The description goes well beyond the annotations by explaining it fans out across external services, publishes a specific return shape, and discloses graceful degradation and timeout behavior: 'bundlephobia's first measurement on a new version can take 5-30s; sources_failed will list it if it times out'. It also notes the v1 scope limitation. No contradiction with the read-only/idempotent/harmless 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 structured with a clear opening sentence, then usage, output shape, ecosystem scope, and failure behavior. Each sentence contributes new, actionable information without fluff. It is longer than average but earns its length by covering critical operational details like latency and partial failures, making it well-organized and front-loaded.

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?

With no output schema, the description compensates by listing the exact summary fields returned (is_latest, license, published_at, etc.), per-advisory details, links, and alternative versions. It also covers latency, timeout, and source failure behavior. For a composite tool across two external APIs, this is comprehensive enough for an agent to invoke it correctly and interpret responses.

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 input schema fully documents both parameters (package name, version) with examples and defaults, giving 100% coverage. The description adds context on use cases and output, but does not add new meaning to the parameters themselves. With baseline 3 for full schema coverage, the description provides slight extra context (e.g., scoped packages accepted) already covered by schema, so no higher score is justified.

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 opens with a specific composite purpose: 'should I add this npm package to my project' check, and explicitly names the data sources (deps.dev and bundlephobia) and what they provide. It clearly distinguishes itself from sibling tools by focusing on npm dependency risk/impact evaluation, a unique niche among the listed tools.

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 gives explicit usage triggers: 'Use whenever an agent asks "is X safe / popular / small" or "what does adding lodash cost me"'. It also clarifies ecosystem boundaries: 'NPM ecosystem only in v1; PyPI / Maven / Cargo / Go fall under deps.dev:version directly', which steers the agent to alternative tools for non-npm packages.

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

A3.6/5.0
Disambiguation3/5

Most tools have clearly distinct roles, but several overlapping pairs create ambiguity: ask_pipeworx vs ask_pipeworx_beta are explicitly identical today, discover_tools vs suggest_questions both serve discovery/onboarding, and bet_research vs polymarket_edges both address betting-edge questions. The detailed descriptions help, but an agent could still select the wrong tool in these cases.

Naming Consistency2/5

The set uses at least four naming conventions: get_* for Bluesky reads, verb_noun for Pipeworx tools (ask_pipeworx, resolve_entity, validate_claim), polymarket_* prefixed tools, and verb-only memory tools (remember, recall, forget). Each subgroup is internally consistent, but the overall mix feels inconsistent and unpredictable.

Tool Count2/5

39 tools is well beyond the typical well-scoped server, and the scope sprawls across Bluesky reads, Pipeworx data, Polymarket analysis, memory, subscriptions, and one-off utilities like generate_llms_txt and scan_dependency. The count would be more reasonable split into separate servers; as-is it feels heavy and unfocused.

Completeness4/5

Within the server's evident scope, coverage is strong: Bluesky read operations, Pipeworx query/research/verification, entity profiling, and subscription lifecycle are all represented. The main gaps are write actions for Bluesky (posting, following, liking) and a few auxiliary features that are only partially integrated, but no critical workflow dead-ends appear for the primary data-research use cases.