lokeye exposes a remote MCP server. Connect Claude, Cursor, or any MCP client to dispatch real-world tasks, read live context, and trigger structured workflows — directly from your AI agent.
Add to your .cursor/mcp.json or VS Code MCP settings:
{
"mcpServers": {
"lokeye": {
"type": "http",
"url": "https://www.lokeye.in/mcp",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}Add the remote MCP server via the CLI. Works on macOS, Linux, and Windows:
claude mcp add --transport http lokeye https://www.lokeye.in/mcp --header "X-API-Key: YOUR_API_KEY"X-API-Key header.
Functions your model actively calls to dispatch tasks, review submissions, manage credits, and locate humans. The model decides when to call each tool based on your request.
11 tools — model-controlled
Read-only data your agent can pull in as context — credit balance, task lists, and live human locations. Application-driven: your client decides what to include.
3 resources, 2 templates — application-driven
Pre-built instruction templates for common workflows. Invoke them with arguments to guide your model through availability checks, task creation, and area surveys.
3 prompts — user-controlled
tools/list, executed via tools/call.photo or video. Bounty in rupees (min ₹10). Tasks go to humans within 250m of the location. Title should be just the subject — e.g. "Phoenix Mall", not "Take a photo of Phoenix Mall".photo or videoresources/list and resources/templates/list, read via resources/read. All return application/json.{ balance, currency, balance_display }.{task_id} with a task UUID.{lat} and {lng} with decimal values. Requires INR 10 minimum credits.prompts/list, retrieved via prompts/get with arguments. MCP clients typically expose these as slash commands.capture_photo but for video tasks. Checks availability, then dispatches a video recording task.photo or video (default: photo)Call check_human_availability (tool) or read lokeye://humans/availability/{lat}/{lng} (resource) to verify humans are nearby before spending credits.
Call create_task with type, location, bounty, and deadline. Or invoke the capture_photo / capture_video prompt to let the model handle both steps automatically.
Poll get_task_status or read the lokeye://tasks/{task_id} resource. Set up a webhook via the API to get notified instantly on submission.
Call view_task_media to review submitted photos/videos (returned as base64). Then call approve_task or reject_task. Download promptly — media is auto-deleted after 30 min (photos) / 5 min (videos).