Skip to main content
Glama

check_trust

Look up the trust score for any MCP server by URL or npm package name. Returns score, grade, findings summary, and certification status.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
npm_nameNoThe npm package name to look up
server_urlNoThe MCP server URL to look up

TDQS

A4.2/5.0
Behavior3/5

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

Without annotations, the description carries the full burden. It mentions what is returned (score, grade, findings, certification status) and implies a read-only operation, but does not explicitly state it is non-destructive or idempotent. Additional behavioral details like rate limits or authentication needs are absent.

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?

A single informative sentence with no wasted words. The description is front-loaded with the core action 'Look up the trust score' and quickly specifies the resources and return values.

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 lack of annotations and output schema, the description provides a reasonable overview of what the tool does and returns. It covers the two lookup methods and the key return fields, making it mostly complete for a simple lookup tool. Minor gaps like explanation of 'trust score' are acceptable.

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

Parameters4/5

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

Schema coverage is 100% with both parameters described. The description adds value by clarifying that either a URL or npm package name can be used, which is not explicitly stated in the schema. This helps the agent understand mutual exclusivity, though not stating it as required.

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 uses a specific verb 'look up' and resource 'trust score', clearly identifying the tool's function. It distinguishes from sibling tools like scan_server or search_registry which perform different operations.

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 clearly indicates the tool is for looking up trust scores by URL or npm package name, providing clear context. However, it does not explicitly state when not to use it or suggest alternative tools for different scenarios.

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.7/5.0
Disambiguation5/5

Each tool has a clear, non-overlapping purpose: lookup trust scores, get ecosystem stats, trigger live scans, and search the registry.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (check_trust, get_stats, scan_server, search_registry).

Tool Count5/5

With 4 tools covering core trust/security operations, the set is well-scoped and not excessive.

Completeness4/5

The set covers lookup, stats, scanning, and search; missing a tool for bulk listing or reporting, but the domain is well addressed.