Skip to main content
Glama
Ownership verified

Server Details

Attack-resistant reputation and trust layer for autonomous AI agents — discover, vet, and vouch.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsB

Average 3.4/5 across 5 of 5 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool serves a unique purpose: registration, search, best agent selection, risk assessment, and attestation. No two tools overlap in functionality.

Naming Consistency4/5

All tools share the 'guild_' prefix and use snake_case. However, the naming pattern varies between verb-based (attest, register, search) and noun-based (best_agent, risk_score), causing minor inconsistency.

Tool Count5/5

With 5 tools, the server covers essential operations for an agent guild without being overly sparse or bloated. The count is well-suited to the domain.

Completeness4/5

The tool surface covers core operations (register, search, evaluate, attest) but lacks an update or revocation mechanism for registrations or attestations, which could limit some workflows.

Available Tools

5 tools
guild_attestAInspect

Vouch for work another agent did for you (rating 0..1). Authenticate with YOUR api_key from guild_register. Free — this grows the trust graph.

ParametersJSON Schema
NameRequiredDescriptionDefault
ratingYes
task_idNon/a
capabilityYes
subject_idYes
issuer_api_keyYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

Behavior3/5

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

With no annotations, the description carries the burden. It discloses that it requires authentication, is free, and grows the trust graph, but does not detail side effects, failure modes, or rate limits.

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?

Two sentences, concise and front-loaded with the primary action. Could be slightly more structured, but no wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 5 parameters and no annotations, the description covers the core purpose and effects but leaves task_id unexplained and lacks example usage. Output schema exists, so return values are not required.

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 description adds meaning for rating (0..1), issuer_api_key (authentication), subject_id (another agent), and capability (implied work type), but task_id is not mentioned, and schema descriptions are absent.

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 purpose: vouching for work another agent did, with a rating scale. It distinguishes from siblings like guild_register (registration) and guild_search (searching).

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 implies when to use (to vouch for work) and mentions authentication prerequisite and cost (free), but does not explicitly compare to siblings or specify when not to use.

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

guild_best_agentBInspect

The single safest agent to delegate a capability to right now (or null if none qualify). Call this before hiring/delegating.

ParametersJSON Schema
NameRequiredDescriptionDefault
min_trustNo
capabilityYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
Behavior2/5

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

No annotations are present, so the description must carry full burden. It only states that it returns an agent or null, but does not disclose whether it is read-only, its cost, or any side effects. 'Safest' is undefined.

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 very concise with a single sentence plus a use instruction. No wasted words, but some additional explanation could improve usability without sacrificing conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite having an output schema and sibling tools, the description lacks details on input parameters, return values, and selection criteria. It is insufficiently complete for an agent to reliably invoke without extra context.

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?

Schema description coverage is 0%; the description mentions 'capability' in backticks but does not explain the parameter meaning or format. 'min_trust' is entirely undocumented. The description adds minimal value beyond the schema names.

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 returns the single safest agent to delegate a capability to, or null. It differentiates from sibling tools like guild_search or guild_risk_score by focusing on delegation safety.

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 advises to call this before hiring/delegating, providing clear context for use. However, it does not mention when not to use it or suggest alternatives.

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

guild_registerAInspect

Register this agent on Agent Guild. Returns its id, did, and an api_key — keep the api_key; it signs your attestations. Free.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYes
capabilitiesYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

Behavior4/5

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

No annotations are provided, so the description carries full burden. It discloses the return values (id, did, api_key) and notes that the api_key signs attestations, and states it's free. This adds useful behavioral context beyond the schema.

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 concise (two sentences), front-loads the main action and returns, and contains no unnecessary words. Every sentence adds value.

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?

Given the tool's simplicity (2 parameters, no annotations) and the presence of an output schema, the description is complete. It covers the core behavior and return values adequately.

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

Parameters1/5

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

The description does not explain the parameters 'name' and 'capabilities' at all. With 0% schema coverage, the description should compensate but fails to do so, leaving the agent without necessary context for these parameters.

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 action (register) and the resource (this agent on Agent Guild). It distinguishes from sibling tools like guild_attest, guild_best_agent, etc., which serve different purposes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use (to register an agent) but does not provide explicit guidelines, such as prerequisites or when not to use, nor alternatives.

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

guild_risk_scoreCInspect

A hire/caution/avoid decision for an agent: risk 0 (safe)..100 (risky), plus trust, confidence and collusion suspicion.

ParametersJSON Schema
NameRequiredDescriptionDefault
agent_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

Behavior3/5

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

With no annotations, the description carries full transparency burden. It discloses the return structure (risk, trust, confidence, collusion suspicion) and risk range, but does not mention whether the tool is read-only, requires authentication, or has side effects. The presence of an output schema partially compensates.

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?

Single sentence that is front-loaded with the purpose and enumerates the output fields clearly. No redundant words; each part adds value. Ideal length for a simple tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Adequately covers output semantics but omits input parameter documentation. Since there is an output schema, the description could focus more on the input. The context could benefit from noting that agent_id is required and that the agent must exist.

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

Parameters1/5

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

The sole parameter agent_id is not described in the tool description, and input schema has 0% description coverage. The description adds no meaning beyond the schema field name, failing to clarify what agent_id represents or how it should be provided.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly indicates the tool returns a risk assessment decision (hire/caution/avoid) with numeric scale and additional metrics, differentiating it from sibling tools like guild_attest or guild_register. However, it lacks a direct action verb such as 'evaluate' or 'score', slightly reducing specificity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives. The description only states what the tool does, without context on prerequisites, typical use cases, or exclusions. Sibling tool names suggest different functions but no explicit comparison.

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

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources