streamable-httpupdated 24d ago
A source-cited record of how AI products handle your data โ whether the vendor trains on your inputs, whether zero data retention is available, and whether you can opt out โ across 11 products (OpenAI, Anthropic, Google Vertex & Gemini, Azure OpenAI, AWS Bedrock, Microsoft 365 Copilot, GitHub Copilot, Mistral, Meta Llama). Every value carries a verbatim quote from the vendor's live policy, a source URL, a confidence level, and the date it was checked. Ambiguous cases are marked unclear rather than guessed.
What can you do with ai vendor data trust index?
AI Vendor Data-Trust Index
A source-cited record of how AI products handle your data โ whether the vendor trains on your
inputs, whether zero data retention is available, and whether you can opt out โ across 11
products (OpenAI, Anthropic, Google Vertex & Gemini, Azure OpenAI, AWS Bedrock, Microsoft 365 Copilot,
GitHub Copilot, Mistral, Meta Llama). Every value carries a verbatim quote from the vendor's live
policy, a source URL, a confidence level, and the date it was checked. Ambiguous cases are marked
unclear rather than guessed. An automated verifier re-checks the policies weekly and only publishes
a value when a verbatim quote supports it โ otherwise it holds the last human-verified value.
- Live index (human view): https://data.oscar-lopez.com/ai-trust
- Free comparison API:
GET https://trust.oscar-lopez.com/v1/ai-trust/matrix - Cite as: Lรณpez, O. E. (2026). AI Vendor Data-Trust Index. https://data.oscar-lopez.com/ai-trust
For AI agents (MCP)
This is a remote MCP server (streamable-http). Add it to your MCP client:
{
"mcpServers": {
"ai-vendor-data-trust": {
"type": "streamable-http",
"url": "https://trust.oscar-lopez.com/mcp"
}
}
}
Tools: get_ai_vendor_trust_headline (free โ verdict + cited fields for one vendor),
get_ai_vendor_trust_compare (free โ one field across all vendors), get_ai_vendor_trust
(paid, x402 โ full cited record). Vendor IDs: openai-api, openai-consumer, anthropic-api,
google-vertex, google-gemini-consumer, microsoft-copilot, azure-openai, aws-bedrock,
mistral-api, meta-llama, github-copilot.
Endpoints
Free (CORS-enabled):
GET /v1/ai-trust/headline?vendor=openai-apiโ verdict + 3 cited headline fieldsGET /v1/ai-trust/compare?field=trains_on_your_dataโ one field across all vendors
Paid (mock x402 โ 402 challenge โ echo {resource,nonce,mac} in X-PAYMENT):
GET /v1/ai-trust/vendor?vendor=openai-apiโ full cited recordGET /v1/ai-trust/allโ bulk export
Other: POST /mcp (JSON-RPC: 2 free tools + 1 paid), GET /openapi.json,
GET /.well-known/x402, GET /admin/config?key=<STATS_TOKEN> (config lever).
Deploy
cd ai-trust-index
npm install
npm run db:create # โ paste the returned database_id into wrangler.jsonc
npm run schema:remote # create tables (drops existing)
npm run seed:remote # load the 6-vendor provisional seed
npx wrangler deploy --dry-run --outdir dist # verify build (no auth)
npm run deploy # deploy the Worker
# In Cloudflare: add custom domain trust.oscar-lopez.com to this Worker.
# Set real secrets before public use:
npx wrangler secret put MOCK_PAYMENT_SECRET
npx wrangler secret put STATS_TOKEN
Verifier (v1) โ automated weekly re-check
Pipeline in src/verifier.ts: fetch each vendor's pinned policy URLs โ content-hash diff (skip if
unchanged) โ model extraction of {value, quote} (Workers AI by default; frontier via AI Gateway if
configured) โ verbatim quote-verification (the candidate quote must be a literal substring of the
fetched source, else rejected) โ confidence gate. Only a quote-verified DEFINITE value auto-publishes
(verified_by='auto'); anything else is queued in review_queue and the last good published value is
held (never auto-downgraded to unclear). A failed fetch holds the last good value and flags the URL.
Runs weekly via cron (0 12 * * 1) and on demand.
Admin endpoints (key-gated by STATS_TOKEN):
GET /admin/verify?key=โฆ[&force=1][&vendor=ID]โ run the verifier nowGET /admin/review?key=โฆโ list open review-queue candidatesGET /admin/review-resolve?key=โฆ&id=N&action=approve|rejectโ approve (publishes ashuman) or rejectGET /admin/verify-selftest?key=โฆโ proves the quote gate rejects a fabricated quote / accepts a verbatim one
Extractor: defaults to Workers AI (EXTRACTOR_MODEL, needs no external key). To use a frontier model,
set AI_GATEWAY_URL + AI_GATEWAY_TOKEN (secret) and point EXTRACTOR_MODEL at the provider model.
Not yet built
The /ai-trust site page's changelog view, real x402 settlement, breadth expansion into new vendors
(free tier) and the depth/channel schema (paid tier). See ../AI-Trust-Index_v1-Spec_Verifier-and-Depth.md.
Install
Add ai vendor data trust index to your client. Pick the one you use.
claude mcp add --transport http ai-vendor-data-trust-index https://trust.oscar-lopez.com/mcpcodex mcp add ai-vendor-data-trust-index --url https://trust.oscar-lopez.com/mcp{
"mcpServers": {
"ai-vendor-data-trust-index": {
"url": "https://trust.oscar-lopez.com/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"ai-vendor-data-trust-index": {
"type": "http",
"url": "https://trust.oscar-lopez.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"ai-vendor-data-trust-index": {
"url": "https://trust.oscar-lopez.com/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"ai-vendor-data-trust-index": {
"serverUrl": "https://trust.oscar-lopez.com/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance19/25
- Trust6/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 16 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 0.1.0Latest | Aug 15, 2026 |