Skip to main content
Glama

verify_token

Verify that a JSON Web Token was minted by this Obelisk Gate (ES256, correct issuer) and report its type, subject, assurance, and principal. Never returns secrets.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tokenYesA compact-serialized JWT issued by Obelisk (id_token or access token).

TDQS

A4.4/5.0
Behavior4/5

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

Since no annotations are provided, the description carries the full burden. It clearly communicates that the tool verifies token origin, signing algorithm, and issuer, and explicitly states it never returns secrets (addressing security transparency). No contradictory statements exist.

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 a single, dense sentence that conveys purpose, verification criteria, output types, and a critical security guarantee. No filler words or redundancy. The information is front-loaded and every part earns its place.

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?

For a single-parameter verification tool with 100% schema coverage and no output schema, the description is nearly complete. It covers what is verified, what is never returned, and the output constituents. Minor gap: it does not mention whether the tool returns a simple boolean, a data object, or an error message on failure.

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 description coverage is 100%, so the baseline starts at 3. The description adds meaningful context beyond the schema: it specifies the token format ('compact-serialized JWT'), acceptable token types ('id_token or access token'), and the issuer ('issued by Obelisk'). This provides concrete usage guidance.

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 specific verbs ('Verify that a JSON Web Token was minted') and clearly identifies the resource ('this Obelisk Gate') along with key verification criteria (ES256, correct issuer). It also lists the outputs (type, subject, assurance, principal), effectively distinguishing it from sibling tools like explain_rating or gate_status.

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 explicitly states what the tool does (verify token from Obelisk Gate) and what it does not do ('Never returns secrets'). It implies when to use it (whenever a token needs validation against the Obelisk Gate) but does not explicitly specify when not to use it or mention alternatives among siblings.

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

Every tool has a distinct concern: explaining ratings, reading gate status, fetching proofs, looking up org ratings, scanning URLs, checking transparency heads, and verifying proofs/tokens. Even the proof-related tools are cleanly separated into read (get_agent_proof) versus verify (verify_agent_run_proof).

Naming Consistency4/5

Most tools follow a clear snake_case verb_noun pattern: explain_rating, scan_trust, get_org_rating, verify_token, verify_agent_run_proof. However, gate_status and transparency_head are noun phrases rather than command-style names, which is a minor inconsistency.

Tool Count5/5

Eight tools is a well-scoped set for a read-only trust and verification server. Each tool covers a meaningful capability with no redundant or superfluous entries.

Completeness4/5

The core domain is covered well: rating explanation, rating retrieval, trust scanning, gate status, agent proofs, run op and token verification, and transparency anchoring. The main gaps are convenience functions like listing organizations or resolving proof IDs, but these are not essential to the primary workflow.

Resources