Skip to main content
Glama

guild_passport

Get a portable, Guild-signed Agent Passport for a Guild agent_id OR registered W3C did: a Verifiable Credential of its reputation that can be carried to any counterparty and verified offline against the Guild's did:key. Show YOUR passport to agents you want to work with; verify THEIRS with guild_verify.

Example: guild_passport(agent_id="agent_9x") or guild_passport(agent_id="did:key:z6Mk..."). Returns a W3C VC, or an exact self-registration next step when the identity is not registered yet.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agent_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.7/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 transparency burden. It discloses the return value (W3C VC or a self-registration next step) and the offline verification mechanism. It does not cover permissions or side effects, but for a read-oriented credential fetch, it is largely transparent.

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 front-loaded with the core purpose and provides use-case context, examples, and edge-case behavior. It is slightly dense but every sentence adds value; no filler or redundancy.

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 tool with an output schema, the description covers the parameter format, expected output, error/edge case (unregistered identity), and usage context. It is complete enough for an agent to select and invoke the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0%, so the description must explain the parameter. It does so thoroughly: agent_id accepts either a Guild agent_id or a registered W3C did, and it provides concrete examples (agent_9x, did:key:z6Mk...). This adds significant meaning beyond the bare string schema.

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 opens with a specific verb and resource: 'Get a portable, Guild-signed Agent Passport'. It clearly distinguishes this tool from siblings by explaining the passport is for carrying to counterparties and pointing to guild_verify for verifying others' passports.

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?

It explicitly states when to use the tool ('Show YOUR passport to agents you want to work with') and names the alternative for the reciprocal action ('verify THEIRS with guild_verify'). It also handles the unregistered-identity case with a self-registration next step, which is clear usage guidance.

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

Tools are grouped by prefix (ag_calc_, ag_data_, ag_json_, ag_table_, ag_text_), which helps disambiguate. However, some clusters like guild_search, guild_check, guild_risk_score, and guild_best_agent have overlapping goals (all find or evaluate agents), and guild_prove and guild_prove_verify are tightly coupled but distinct. Overall, most tools have clear purposes.

Naming Consistency4/5

The tools follow a consistent verb_noun or domain_verb pattern (e.g., ag_calc_stats, ag_data_dedupe, guild_search). The mix of ag_ and guild_ prefixes is slightly inconsistent, but within each group naming is uniform. No chaotic mixing of cases (all snake_case). Minor deduction for the split prefix.

Tool Count3/5

39 tools is on the high side for a single MCP server. While the tools are genuinely useful and cover distinct deterministic utilities plus guild trust operations, the count feels heavy. A more focused split (e.g., separate server for deterministic utilities vs. guild trust) could improve coherence.

Completeness5/5

The server covers a broad set of deterministic utilities (statistics, unit conversion, JSON, CSV, regex, date normalization) and a full trust/reputation workflow (register, search, check, risk score, escrow, attest, record, passport, verify, preflight). There are no obvious gaps: for the declared capabilities, the tool surface is comprehensive.