Skip to main content
Glama

Inspect public WORKS contract

works_public_contract_lint
Read-onlyIdempotent

After a task is already known to have a public GitHub repository, an exact lowercase 40-character commit SHA, and a matching supported static claim, return the pinned contract digest and scope. Do not call for mutable or abbreviated refs, local or private repositories, runtime, builds, tests, deployments, or broad production-readiness claims.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
contractYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
titleYes
trustYes
validYes
digestYes
executionYes
descriptionYes

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds some context about the return value ('pinned contract digest and scope') and the strict input requirements, but does not disclose additional behavioral traits such as side effects, rate limits, or failure modes. With annotations present, this is adequate but not exceptional.

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 with a clear front-loaded action and concise exclusions. Every word adds value, avoiding redundancy or filler. It is well-structured for quick parsing.

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 has an output schema (so return values are documented) and annotations cover safety, the description is quite complete. It clearly states prerequisites and exclusions. However, the lack of parameter explanation is a minor gap that prevents a perfect score, as the agent must infer the meaning of 'contract' from enums alone.

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 schema has only one parameter 'contract' with an enum but no descriptions, and schema description coverage is 0%. The tool description does not explain what 'contract' means or how to choose between 'node-package' and 'env-safety'. The phrase 'matching supported static claim' hints at the concept, but the description fails to compensate for the lack of schema documentation, leaving the agent without clear parameter semantics.

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: 'return the pinned contract digest and scope' given a public repository, exact commit SHA, and supported static claim. It also differentiates from siblings by explicitly listing what it does not handle ('runtime, builds, tests, deployments'), distinguishing it from other tools like eligibility or verification.

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 provides explicit preconditions ('After a task is already known to have a public GitHub repository, an exact lowercase 40-character commit SHA, and a matching supported static claim') and explicit exclusions ('Do not call for mutable or abbreviated refs, local or private repositories, runtime, builds, tests, deployments, or broad production-readiness claims'). This gives clear when-to-use and when-not-to-use guidance, even without naming sibling tools directly.

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

Each tool has a clearly distinct role: works_public_eligibility is a preflight check, works_public_contract_lint resolves the contract digest, and works_verify_public_repository performs the actual verification. The descriptions explicitly specify the intended order and conditions, so an agent can easily select the right tool.

Naming Consistency3/5

All tool names share the 'works_' prefix, but the pattern is inconsistent: two use 'public' as a scope modifier (works_public_eligibility, works_public_contract_lint), while the third places 'public' after the verb (works_verify_public_repository). Additionally, 'eligibility' is a noun, 'contract_lint' can be read as noun_verb, and 'verify_public_repository' is verb_noun, creating mixed conventions.

Tool Count5/5

With only 3 tools, the server is tightly scoped to its purpose: preflight eligibility, contract resolution, and final verification. Each tool is necessary and non-redundant, making the count well-suited for the domain.

Completeness4/5

The tools cover the full workflow from eligibility check through final verification, and the descriptions provide clear guidance on when to stop. A minor gap is the lack of an explicit tool to list supported static claims, but this can be inferred from the contract_lint and verify tools, so the overall surface is functional.