Add MCP server trust verification quickstart
Author: vdineshkCreated May 25, 2026Updated May 27, 2026
Proposal
Add a quickstart example showing how to verify MCP server trust before connecting. Dominion Observatory provides free behavioral trust scores for 14,824+ MCP servers via a simple API:
curl "https://dominionobservatory.com/api/trust?url=brave-search"
# Returns: { "found": true, "trust_score": 75, "name": "brave-search-mcp-server", ... }What the quickstart would show
- Check a server's trust score before connecting
- Set a minimum trust threshold
- Block connections to low-trust servers
CI integration
We also have a GitHub Action that scans MCP configs on PRs and posts trust scores as comments:
- uses: vdineshk/dominion-observatory/github-action@main
with:
threshold: 50No API key needed. Free and open-source.
Source: anthropics/claude-quickstarts