The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Trustscoreagent listing page.
Free, open reputation registry for AI microservices. Agents check trust scores before calling any service.
Status: Phase 1 (early). The API, scoring (Beta + EigenTrust), receipt verification, Merkle audit trail and MCP server are implemented and tested — but the public dataset is still small, some services (
*.example.com) are demo seed data, and parts of the design (on-chain anchoring, x402 payments, mandatory agent signatures) are Phase 2. We publish early and openly on purpose: the trust layer for the agentic economy should exist, be auditable, and be adoptable before it becomes critical. See the trust model in SECURITY.md.
AI agents increasingly rely on paid microservices. TrustScoreAgent lets any agent:
No account needed. No API key. Identify services by URL, domain, or DID.
| Endpoint | Description |
|---|---|
GET /v1/score?service= | Trust score for a service (0.5 neutral for unknown) |
POST /v1/rate | Submit a rating after calling a service |
GET /v1/services | List rated services (pagination, sorting, filtering) |
GET /v1/agent/trust?did= | Check your agent's trust score |
GET /v1/audit/root | Latest Merkle tree root |
GET /v1/audit/proof/{id} | Cryptographic inclusion proof for a rating |
| Endpoint | Description |
|---|---|
GET /v1/score/history?service= | Daily aggregated score history |
GET /v1/score/detailed?service= | Latency percentiles, quality distribution |
POST /v1/scores/bulk | Up to 100 scores in one request |
All endpoints accept services in any format — they are normalized internally:
api.example.com (domain)https://api.example.com/v1/translate (URL)did:web:api.example.com (DID)All three resolve to the same service.
TrustScoreAgent is available as an MCP server for Claude, Cursor, and other agents.
See docs/mcp.md for full setup instructions.
Drop-in tools for agent frameworks (no account or API key needed):
from trustscoreagent_langchain import get_trustscoreagent_toolsfrom trustscoreagent_crewai import get_trustscoreagent_toolsEach exposes trustscore_check_reputation, trustscore_submit_rating, and
trustscore_list_services. See integrations/.
Contributions are welcome — see CONTRIBUTING.md and our Code of Conduct. To report a vulnerability, follow SECURITY.md.
TrustScoreAgent is Phase 1 (early). What that means in practice:
did:web:trustscoreagent.com:probe) that measures the availability, latency and
conformity of a curated list of public, free APIs — real, Merkle-audited measurements, not
fabricated numbers. Community and receipt-verified ratings accumulate on top. (The earlier
fictitious *.example.com seeds have been removed.)did:key sign each rating with their Ed25519 key (X-Agent-Signature), which binds the
rating to the holder of that key. Unsigned ratings still count at half weight so existing
clients keep working, which means a rating is only as attributable as its signature.
Verified service receipts remain the strongest signal, and on-chain Merkle anchoring
is still Phase 2.See SECURITY.md for the full trust model and how to report vulnerabilities.
Apache-2.0. See LICENSE.