trust-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| TRUST_REGISTRY_URL | No | Registry API URL | https://trustthenverify.com |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| trust_lookupA | Look up an agent's trust score before transacting. Returns score (0-100), tier, and verification details. |
| trust_registerA | Register yourself in the trust registry. Free registration, instant trust score. |
| trust_reviewA | Submit a review for an agent after a transaction. Reviews with proof-of-payment are marked as verified. |
| trust_listA | List all registered agents with their trust scores. Supports pagination. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool has a clearly distinct purpose: lookup retrieves trust scores, register adds an agent, review submits a review, and list enumerates agents. No overlap or ambiguity exists.
All tools follow a consistent 'trust_verb' pattern using snake_case. The verb is always a clear action, making the API predictable and easy to navigate.
With only 4 tools, the server is tightly scoped to its purpose of managing trust scores and reviews. Each tool contributes to a clear workflow without redundancy.
The core lifecycle is covered: register, look up, review, and list. Minor gaps include no tool to update or delete a review or modify agent registration, but these are not essential for a simple trust registry.