Connect I Spy AI to your AI agent
Plug the I Spy AI MCP server into Claude Desktop, Cursor, or any MCP-compatible client. Your agent gets an analyze_image tool that returns a verdict, confidence, and supporting signals for any image you pass it.
1. Endpoint URL
/api/mcp2. Your Access Token
Sign in to generate your access token.
3. How do I configure the MCP server for Claude or Cursor?
claude_desktop_config.json
{
"mcpServers": {
"ispyai": {
"url": "/api/mcp",
"headers": {
"Authorization": "Bearer <paste-your-token-here>"
}
}
}
}On macOS, edit ~/Library/Application Support/Claude/claude_desktop_config.json. On Windows, edit %APPDATA%\Claude\claude_desktop_config.json. Restart Claude Desktop after saving.
4. What does the analyze_image tool do?
analyze_image is the Model Context Protocol (MCP) tool exposed by I Spy AI that classifies an image as AI-generated or authentic. Given either a public image URL or base64-encoded image bytes, it returns a verdict, a confidence score, and the supporting signals used to reach that verdict — so an AI agent can verify visual evidence before acting on it.
Parameters
image_url— public http(s) URL to a JPEG, PNG, or WebP image.image_base64— base64-encoded image bytes. Data URL prefix is accepted.image_mime_type— optional MIME hint when sending base64 without a data URL prefix.
Performance & Limits
- Accuracy: Up to 90.9% accuracy in catching AI content
- Monthly analyses: unlimited — no per-image, per-token, or per-month usage caps.
- Pricing: flat $9.99/month after a 7-day free trial (payment method required at signup, cancel anytime).
- Max image size:15 MB per request.
- Accepted formats: JPEG, PNG, WebP.
- Rate limit: 60 requests per minute, per IP.