Skip to main content
Glama

find_attestation

Read-onlyIdempotent

Ask whether anyone has already attested an artifact, BEFORE you install it or pay to scan it. Free and anonymous. Give a package identity like "chalk@5.6.1", an MCP server endpoint URL, or a sha256 content hash. Returns the signed verdict if one exists, which you can verify offline against https://lazaretto.dev/.well-known/jwks.json, plus freshness: whether the corpus has since contradicted it and whether it was attested under an older rules version. A miss is not a verdict, it only means nobody has scanned this yet.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
subjectYesA package identity ("chalk@5.6.1"), an MCP server endpoint URL, or a sha256 content hash, optionally sha256: prefixed.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
riskNo
foundYesFalse means nobody has attested it, which is not a clean verdict.
verdictNo
age_daysNo
attestationNoCompact JWS you can verify offline; it carries the verdict, never the evidence.
attested_atNo
stale_rulesNoTrue when attested under an older rules version.
contradictedNoNon-null when this subject is NOW a known-bad match.

TDQS

A4.6/5.0
Behavior5/5

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

The description adds significant behavioral context beyond the annotations. It discloses that the tool is free and anonymous (not in annotations), describes the return value (signed verdict) and its verifiability, explains freshness indicators (corpus contradiction and older rules version), and clarifies the meaning of a miss. This aligns with and enriches the openWorldHint and readOnlyHint annotations without contradiction.

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 concise and well-organized, with the core purpose front-loaded in the first sentence. Each sentence adds meaningful information (usage timing, input types, return details, miss semantics) with no fluff. While it is a single paragraph of moderate length, every part contributes to agent understanding, so it is appropriately sized.

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 the tool has only one parameter, rich annotations, and an existing output schema, the description is remarkably complete. It covers what the tool does, what to pass, what to expect in return (including freshness details), and the meaning of a miss. An agent can correctly invoke this tool and interpret the response without ambiguity.

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?

The schema already describes the subject parameter with 100% coverage, including an example. The description goes further by enumerating the valid input forms (package identity, MCP server URL, or sha256 hash) and noting the optional 'sha256:' prefix, which is not in the schema. This adds practical guidance that helps the agent format the input correctly.

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 purpose: to ask whether anyone has already attested an artifact. It specifies the resource (attestation) and provides clear guidance on input types (package identity, MCP server URL, or hash). It differentiates from siblings by emphasizing it is free, anonymous, and should be used before scanning – making it distinct from the scan_* and check_lockfile tools.

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 gives explicit timing guidance ('BEFORE you install it or pay to scan it') and clarifies the tool is free and anonymous, which implies using it as a pre-check. It also explains that a miss is not a verdict, preventing misuse as a safety check. However, it does not name specific alternative tools or explicitly state when not to use it beyond the pre-scan context, so it is strong but not exhaustive.

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

Each tool has a distinct target and action: lockfile advisory checks, deep behavioral scans, MCP server scans, local tool-definition checks, hash lookups, and attestation operations. The closest overlap is check_lockfile vs scan_lockfile_deep and check_mcp_tools vs scan_mcp_server, but the descriptions clearly separate free vs paid and local vs remote workflows.

Naming Consistency4/5

Most tools follow a clear verb_noun snake_case pattern: check_lockfile, scan_artifact, scan_mcp_server, find_attestation, verify_attestation. known_bad_lookup is the one outlier, using an object-first pattern instead of a verb-first one, but it is still readable and does not create real confusion.

Tool Count5/5

Eight tools is well-scoped for a security-scanning service covering lockfiles, artifacts, MCP servers, hash lookups, and attestations. Each tool addresses a distinct use case, and the count is neither bloated nor thin for the server's purpose.

Completeness4/5

The surface covers the main security workflows: advisory lockfile checks, deep behavioral scanning, MCP server vetting, local tool-definition analysis, known-bad hash lookups, and attestation discovery/verification. Minor gaps exist around explicitly creating or managing attestations, but scans likely generate them implicitly and the core lifecycle is coherent.