Skip to main content
Glama
aeoess

agent-passport-system-mcp

by aeoess

verify_endorsement

Verify an endorsement's signature against its embedded principal public key to confirm the endorsement is intact and genuinely signed by that key.

Instructions

Check an endorsement's signature against the principalPublicKey the endorsement itself carries. What a valid result establishes: the endorsement is intact and signed by that key. What it does not establish: that the key belongs to the principal it names, which needs a trust anchor you supply out of band.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endorsement_idYesEndorsement ID to verify

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv4.0.0
    • changedInput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • removedInput schema / additionalProperties
      Removed value: -false
  2. Addedv2.8.0

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations provided, the description carries the burden of behavioral disclosure. It clearly discloses the cryptographic limitation of the verification and the external trust requirement. It does not describe return values or error behavior, but the core behavioral caveat is presented clearly and accurately.

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?

Two dense sentences with no filler. The core operation is front-loaded, and the crucial limitation is stated immediately after. Every sentence earns its place and the structure makes the trust boundary easy to grasp.

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?

For a single-parameter read-only verification tool with no output schema, the description covers purpose, success criteria, the critical limitation, and the required external trust anchor. Nothing essential is missing for an agent to call it correctly and interpret the result at a semantic level.

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 schema already documents endorsement_id as 'Endorsement ID to verify' at 100% coverage, so the baseline is 3. The description adds useful context by explaining that the verification key is inside the endorsement itself, implying no separate key parameter is needed, but it does not expand on ID format or acquisition.

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 states a specific verb and resource: checking an endorsement's signature against the principalPublicKey carried by the endorsement itself. It also clarifies the scope of what the result does and does not establish, which meaningfully differentiates it from broader trust-verification tools like verify_issuer.

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 clear guidance on what this tool is for and, importantly, what it cannot be used for: it verifies signature integrity against the embedded key but not key-to-principal binding, which needs an out-of-band trust anchor. It does not explicitly name sibling alternatives, but the boundary is explicit enough for correct selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools