← Back to search
MCP VERIFY MCP API

Use Verify as an MCP server

Verify exposes a public read-only MCP surface for finding, ranking, comparing, and inspecting MCP servers.

Endpoint
https://verify.sentinelsignal.io/mcp
JSON-RPC over HTTP. The human-readable page is GET /mcp; the MCP transport is POST /mcp.
Server card
Public metadata for registries and clients.
Registry presence
Also submitted to mcpservers.org for directory discovery.

Available tools

search_servers
Rank candidates by capability, auth preference, client target, and risk tolerance.
recommend_servers
Turn a plain-language task into top MCP matches with install config.
get_server_report
Return the full machine-readable verify report for one server.
compare_servers
Compare up to four servers across score, auth, freshness, tools, and verdict.

Quick start

Claude Desktop / generic wrapper
{
  "mcpServers": {
    "verify": {
      "command": "npx",
      "args": ["mcp-remote", "https://verify.sentinelsignal.io/mcp"]
    }
  }
}
JSON-RPC example
curl -sS https://verify.sentinelsignal.io/mcp \
  -H 'content-type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_servers","arguments":{"capabilities":["healthcare"],"auth_preference":"oauth","client_target":"openai_connectors","risk_tolerance":"high","limit":3}}}'