Connect with Claude
EasiestAdd SummerEyes to Claude in your browser. No files to edit.
1
In Claude, open Settings and find Connectors (or MCP Servers).
2
Click Add custom connector and enter:
Name
Server URL
3
Click Add. When you first use it, your browser opens for sign-in. Done.
for developers
Claude Code / Cursor / MCP Clients
SSOAdd this to your .mcp.json. Your client handles OAuth automatically.
{
"mcpServers": {
"summereyes": {
"type": "http",
"url": "https://api.summereyes.vip/mcp/v1"
}
}
}Your API Keys
Create API keys for non-OAuth clients or automated systems.
{
"mcpServers": {
"summereyes": {
"type": "http",
"url": "https://api.summereyes.vip/mcp/v1",
"headers": {
"x-api-key": "YOUR_API_KEY"
}
}
}
}Test with curl
curl -X POST https://api.summereyes.vip/mcp/v1 \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{}}'REST API & Docs
POST to https://api.summereyes.vip/investigations/analyze with your API key or Bearer token. Browse the interactive API docs at https://api.summereyes.vip/docs.