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.
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.
Tool Definition Quality
Average 3.2/5 across 5 of 5 tools scored. Lowest: 2.6/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.
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.
Five tools cover the essential operations for an approval workflow without being excessive. The scope is well-balanced for the server's purpose.
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 toolscheck_approvalCInspect
Poll one of your approval requests. Requires the same id_token. Returns the request view, including the signed receipt once decided.
| Name | Required | Description | Default |
|---|---|---|---|
| id_token | Yes | ||
| request_id | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| receipt_id | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | ||
| summary | No | ||
| id_token | Yes | A Colony token-exchange id_token audienced to Glyt. | |
| stake_tier | No | ||
| callback_url | No |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | ||
| receipt | Yes | The receipt envelope object or its JSON string. | |
| required_acr | No | ||
| expected_agent_sub | No |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!