vouchtrail
Server Details
Evidence-first trust verdicts for AI-agent services — query one before you transact.
- 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.6/5 across 3 of 3 tools scored.
get_service and get_verdict both return verdicts with evidence, differing only in lookup (numeric id vs. unspecified). An agent could easily confuse which one to use, especially since get_verdict does not specify its input. search_services is distinct.
All tool names follow a consistent verb_noun pattern: get_service, get_verdict, search_services. Both 'get' verbs are for retrieval and 'search' for discovery, making the naming uniform and predictable.
3 tools is within the ideal 3-15 range for a focused service. Each tool serves a clear role in retrieving verdict data or searching the directory, with no redundancy in count.
For a read-only service, the surface covers search and retrieval of verdicts and evidence. The only minor gap is that get_verdict and get_service are redundant, and there is no explicit 'list all' but search covers that. No major lifecycle gaps exist.
Available Tools
3 toolsget_serviceBInspect
Full verdict and published evidence for a subject by numeric id.
| Name | Required | Description | Default |
|---|---|---|---|
| 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 carries the full burden of behavioral disclosure. It indicates a read-only retrieval of verdict and evidence but does not mention error behavior (e.g., not found), permissions, or whether it returns only published evidence (which is implied but not explicit). The description lacks transparency about side effects or data scope beyond 'full verdict and published evidence.'
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 concise sentence (9 words) that front-loads the core outcome ('Full verdict and published evidence') and then specifies the input. Every word earns its place with no redundancy or fluff.
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 tool's simplicity (one parameter, no output schema, no annotations), the description covers the basics: what is returned and how to identify the subject. However, it lacks details on the structure of the verdict/evidence, what 'published' means, or error cases, so it is not fully complete.
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%, so the description must compensate. It adds that the id is numeric and used to identify a subject, which clarifies the schema's bare 'id' property. However, it does not specify what 'subject' refers to (e.g., service? person?), leaving some ambiguity.
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 that the tool returns the full verdict and published evidence for a subject identified by numeric id. It distinguishes from siblings like get_verdict (likely partial) and search_services (search vs. direct retrieval), though it could be more explicit about the tool's scope.
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 implies that this tool is for retrieving a complete verdict and evidence when you have the numeric id, as opposed to searching (search_services) or getting just the verdict (get_verdict). However, it does not explicitly state when to use this tool over alternatives or provide exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_verdictAInspect
Evidence-backed trust verdict for an agent service before you transact. Returns per-dimension scores, a separate confidence, independent-voice count, and the evidence.
| Name | Required | Description | Default |
|---|---|---|---|
| subject | Yes | Service URL, numeric id, or @agenty-handle. | |
| min_evidence_tier | No | 1 identity · 2 receipt · 3 reproduced. | |
| min_reviewer_karma | No | ||
| max_staleness_hours | No | ||
| require_human_linked | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavior disclosure. It lists return elements (per-dimension scores, confidence, independent-voice count, evidence) which gives some insight into behavior, but it does not mention whether the operation is read-only, what side effects exist, or any rate limits or dependencies. This is adequate but not richly transparent.
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, front-loaded with purpose, then a compact list of return values. Every word earns its place; there is no redundancy or filler.
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?
The description provides a solid overview of purpose and outputs, but lacks parameter explanations, usage alternatives, and behavioral notes. Given no output schema or annotations, the description is minimally adequate but leaves significant gaps for an agent to use the tool effectively.
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 low (40%) with only 'subject' and 'min_evidence_tier' described. The description does not compensate for the other parameters (min_reviewer_karma, max_staleness_hours, require_human_linked) and adds no parameter-specific meaning beyond the schema.
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 a specific verb+resource: 'Evidence-backed trust verdict for an agent service before you transact.' It clearly explains what the tool does (returns a verdict) and distinguishes itself from siblings (get_service, search_services) by focusing on trust assessment rather than service discovery or details.
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 phrase 'before you transact' provides clear usage context, implying you should call this to assess trust before a transaction. However, it does not explicitly state when not to use this tool or name alternatives, so it falls short of fully explicit guidelines.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_servicesAInspect
Search the directory of reviewed agent services by name/URL, filter by kind, and sort.
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | ||
| kind | No | ||
| sort | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of explaining behavior. It indicates a read-only search operation and mentions filtering and sorting, which is transparent enough for a safe operation. However, it does not disclose details like result format or pagination.
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, concise sentence that front-loads the main action and covers the key aspects (search, filter, sort) with no redundant 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?
The tool is relatively simple with optional parameters and no output schema. The description explains the operation and parameter roles, but it does not mention the return format or provide context on related tools, leaving some gaps for a complete understanding.
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?
The schema has no parameter descriptions (0% coverage), so the description must explain the parameters. It does: 'by name/URL' maps to q, 'filter by kind' maps to kind, and 'sort' maps to sort. This adds meaning beyond the bare schema types and enums.
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: searching a directory of reviewed agent services by name/URL, with filtering and sorting. It uses a specific verb ('search') and resource, and is distinct from sibling tools like get_service and get_verdict.
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 the sibling tools. The description only explains what the tool does, not when to choose it over get_service or get_verdict, or any exclusions.
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!
Related MCP Servers
- MIT
- Alicense-qualityBmaintenanceEnables verification of AI agent identity, authority, and integrity at transaction time, returning signed verdicts for allow, step-up, review, or block.MIT
- AlicenseAqualityBmaintenanceAI agent provenance, trust, and auditability layer. VERITAS multi-gate scoring, Cortex approval gates, S.E.A.L. hash-chain audit ledger, and semantic RAG with cryptographic provenance tracking for every decision an agent makes.275MIT

RNWY MCP Serverofficial
Flicense-qualityFmaintenanceProvides trust intelligence for AI agents across 12 chains, including sybil detection, reviewer wallet analysis, and risk tiers, with tools for trust checks, reviewer analysis, and agent comparison.