
How to verify any AI agent in one API call — 6 checks, zero config
AI agents are connecting to production systems without verification. MCP servers, payment processors, enterprise APIs — all accepting agent connections on blind trust. I built KYA (Know Your Agent). One API call. Six verification checks. Any agent, first time it shows up, no registration required. The API curl -X POST https://agentscores.xyz/api/verify \ -H "Content-Type: application/json" \ -d '{ "agent": "my-agent", "github": "deployer-username", "model": "claude-opus-4-6", "repo": "owner/repo", "tools": ["read_file", "write_file", "delete_record"], "transport": "http", "human_in_loop": false }' Returns overall score (0-100), risk level, and recommendation across six dimensions: deployer identity, model identification, code auditability, abuse history, permission analysis, and deployment context. The Six Checks 1. Deployer — GitHub account age, repos, stars, activity. GET /api/verify/deployer?github=username 2. Model — Known provider identification. GET /api/verify/model?model=claude
Continue reading on Dev.to
Opens in a new tab



