Skip to main content
Glama

Glyt

Server Details

Human-in-the-loop approval for agent actions, with verifiable action-bound receipts.

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.2/5 across 5 of 5 tools scored. Lowest: 2.6/5.

Server CoherenceA
Disambiguation5/5

Each tool has a distinct responsibility: check_approval polls decisions, discovery provides service metadata, get_receipt retrieves receipts, request_approval initiates approvals, and verify_receipt verifies receipts. No functional overlap.

Naming Consistency4/5

Most tools follow a verb_noun pattern (check_approval, get_receipt, request_approval, verify_receipt), but 'discovery' is a noun-only name, creating a minor inconsistency.

Tool Count5/5

Five tools cover the essential operations for an approval workflow without being excessive. The scope is well-balanced for the server's purpose.

Completeness4/5

The core lifecycle (request, check, retrieve, verify) is covered, but missing features like listing or canceling requests are minor gaps that agents can work around.

Available Tools

5 tools
check_approvalCInspect

Poll one of your approval requests. Requires the same id_token. Returns the request view, including the signed receipt once decided.

ParametersJSON Schema
NameRequiredDescriptionDefault
id_tokenYes
request_idYes
Behavior2/5

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

No annotations are provided, so the description must carry the behavioral burden. It mentions that it polls and returns the request view with a signed receipt once decided, but lacks details on idempotency, error handling, rate limits, or auth specifics beyond the token requirement.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise at two sentences, but the structure could be improved by front-loading the main action and adding necessary details. It is appropriately sized but lacks clarity in parts.

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?

Given the lack of output schema, annotations, and parameter descriptions, the description is insufficient. It does not explain the return value structure, error conditions, or the polling behavior, leaving the agent with gaps.

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%, yet the description only mentions `id_token` in passing ('Requires the same `id_token`') and does not explain `request_id`. It adds minimal meaning beyond the schema's property names.

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 states 'Poll one of your approval requests', clearly indicating the verb and resource. However, it does not differentiate from sibling tools like 'get_receipt' which might have similar functionality.

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?

The description provides a prerequisite ('Requires the same `id_token`') but no explicit guidance on when to use this tool versus alternatives like 'request_approval' or 'get_receipt'. The purpose of polling is implied but not contrasted.

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

discoveryAInspect

Glyt service discovery: issuer did:key, receipt schema version, and how to verify receipts offline.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

With no annotations, the description implies a read-only operation by mentioning 'discovery' and 'verify receipts offline', but it does not explicitly state that the tool is non-destructive or that it has no side effects.

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 a single sentence, but it effectively summarizes the tool's output. It could be slightly more structured, but remains concise with no redundant information.

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 no output schema and no annotations, the description adequately covers what the tool returns. It provides enough context for an agent to understand the tool's role in the sibling tool ecosystem, especially for offline verification workflow.

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?

No parameters exist, so baseline is 4. The description adds meaning by listing the specific pieces of information returned (issuer DID, schema version, verification method), which is not evident from the schema alone.

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 specifies the tool provides service discovery info: issuer DID key, receipt schema version, and offline verification method. It distinguishes itself from siblings like 'get_receipt' by offering foundational metadata, but could be more explicit about its role as a preliminary lookup.

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 such as 'check_approval' or 'verify_receipt'. It does not indicate that it should be called first to obtain configuration needed by other tools.

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

get_receiptCInspect

Fetch a signed receipt envelope by id.

ParametersJSON Schema
NameRequiredDescriptionDefault
receipt_idYes
Behavior2/5

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

Without annotations, the description carries full burden. It only states 'Fetch' (implying read-only), but lacks details on error handling, return format, or what happens if the receipt is not found.

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 sentence, front-loaded with the main action and object. No unnecessary 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?

For a simple fetch tool with one parameter and no output schema, the description is minimally complete. However, it could be improved by clarifying the meaning of 'signed receipt envelope' and the expected return.

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 coverage is 0% (no parameter descriptions in schema). The description adds minimal value by saying 'by id' but does not explain what receipt_id is, its format, or how to obtain it.

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 states the action 'Fetch' and the resource 'a signed receipt envelope by id'. It is specific to fetching a single receipt by its ID, though it does not differentiate from sibling tools like verify_receipt.

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 is provided on when to use this tool versus alternatives like verify_receipt or check_approval. There is no mention of prerequisites, context, or scenarios.

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

request_approvalAInspect

Ask the operator behind this agent to approve a specific action. Requires a Colony token-exchange id_token (colony:operator) as id_token. Returns the request view; poll with check_approval. Nothing is approved without the human's decision.

ParametersJSON Schema
NameRequiredDescriptionDefault
actionYes
summaryNo
id_tokenYesA Colony token-exchange id_token audienced to Glyt.
stake_tierNo
callback_urlNo
Behavior4/5

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

With no annotations, the description discloses the required token and the polling workflow. It clearly states the need for a Colony token and that approval requires human decision, but could be more transparent about error behaviors or side effects of calling the tool.

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 three sentences, each serving a distinct purpose: stating the action, specifying the requirement, and describing the result/workflow. No unnecessary words.

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?

Given the complexity (5 parameters, nested objects, no output schema), the description covers the essential workflow (request then poll) and the critical token requirement. It lacks detail on the callback_url and the stake_tier, but the overall flow is clear for an agent.

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 only 20% (only id_token has a description). The description adds meaning for id_token by specifying its origin and format, but does not explain action, summary, stake_tier, or callback_url. Since 4 out of 5 parameters are undocumented in the schema, the description should have provided more 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 clearly states the tool's purpose: to ask the operator to approve a specific action. It distinguishes from siblings like check_approval by indicating that this tool initiates the approval request and that polling is done with check_approval.

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 provides usage context: it requires a specific id_token and returns a view to poll with check_approval. It explicitly states that nothing is approved without human decision, but does not detail when not to use this tool (e.g., if the token is expired).

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

verify_receiptBInspect

Verify a Glyt receipt against the exact action you are about to run. Returns {valid, decision, acr, not_after, reasons}. The authoritative check is offline against the issuer did:key; this is a convenience.

ParametersJSON Schema
NameRequiredDescriptionDefault
actionYes
receiptYesThe receipt envelope object or its JSON string.
required_acrNo
expected_agent_subNo
Behavior3/5

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

No annotations provided; description adds that the check is offline against the issuer did:key as a convenience, which provides some behavioral context but lacks details on side effects, authentication, 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 efficiently convey purpose and return format without fluff, though structure could be improved with briefer parameter hints.

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?

Given 4 parameters including nested objects and no output schema, the description is insufficient. It mentions return fields but fails to explain required_acr, expected_agent_sub, or prerequisites.

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 only 25%, and the description adds minimal parameter meaning. Only receipt gets a brief schema description; action, required_acr, and expected_agent_sub lack explanation beyond their names.

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 states the tool verifies a Glyt receipt against an action and lists the return fields. However, it does not differentiate from sibling tools like check_approval or get_receipt.

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?

Implied usage 'against the exact action you are about to run' gives context, but no explicit when-not-to-use or alternative tools are mentioned.

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