Skip to main content
Glama

MCP Verification Gate: conformance and disclosure checker for MCP servers

One glance: is this MCP server verified, with proof

is_verified
Read-onlyIdempotent

A single machine-first answer for an agent deciding whether to trust an MCP endpoint BEFORE it connects. Returns verified (true only when the latest scheduled measurement passed every measured condition; null otherwise, never false), a state enum saying which case it is, measured_at, and a record_sha256 with a recompute_url so you can check the verdict without trusting this gate. Reads the stored register only: it contacts nothing and measures nothing. Absent and pending are reported honestly and are NOT negative verdicts. For a fresh measurement rather than the stored one, use check_conformance.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endpointYeshttps URL of the MCP endpoint to look up, exactly as it appears on the register

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
stateNoverified = passed all measured conditions. pending = measured but not passing every one (often only because determinism needs the owner's consent). held = could not be reached. watched = on the list, not yet measured. absent = no row here at all.
endpointNo
verifiedNotrue = latest measurement passed all measured conditions. null = not established here (see state). Never false: unmeasured or not-yet-passing is not a failure.
conditionsNo
measured_atNo
on_registerNo
recompute_urlNo
record_sha256NoHash of the latest verdict. Recompute it via recompute_url; no trust in this gate required.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Added

TDQS

A4.5/5.0
Behavior5/5

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

The description fully discloses that the tool 'Reads the stored register: it contacts nothing and measures nothing.' It also honestly explains that 'absent and pending are reported honestly and are NOT negative verdicts' and clarifies that 'verified' can never be false, ensuring the agent understands the reliability and side-effect-free nature of the operation.

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 but includes essential details about the return fields, trust implications, and the read-only nature. It is structured as a coherent paragraph with clear sentences, though slightly verbose due to repeated emphasis on what the tool does not do.

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?

The description outlines the return values (verified, state enum, measured_at, record_sha256, recompute_url) and explains how to verify the verdict without trusting the gate. It also mentions the alternative for fresh measurements. It lacks explicit error handling details but is sufficiently complete for an agent to decide on usage.

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 only parameter 'endpoint' is already well-described in the input schema as an 'https URL... exactly as it appears on the register.' The description does not add extra semantics beyond the schema, but since the schema covers 100% of the parameter, the baseline of 3 is appropriate.

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 precisely states the tool's purpose: 'A single machine-first answer for an agent deciding whether to trust an MCP endpoint BEFORE it connects.' It also explicitly differentiates from the sibling tool check_conformance, making its unique role clear.

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 indicates when to use the tool ('BEFORE it connects') and provides an explicit alternative for fresh measurements ('use check_conformance'). This gives clear contextual guidance on when to employ this tool versus a sibling.

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.