Skip to main content
Genlook ships a remote MCP server that exposes the Virtual Try-On API as tools your AI assistant can call directly: upload a photo, generate a try-on, and see the result right in the conversation.
https://mcp.genlook.app
No API key needed — the connector authenticates with OAuth. Sign in (or create an account) when your assistant prompts you; new accounts start with 5 free credits, and each generation costs 1 credit. Top up anytime at platform.genlook.app/topup.

Setup

  1. Open claude.aiSettings → Connectors
  2. Click Add custom connector and paste https://mcp.genlook.app
  3. Sign in with your Genlook account when prompted

Tools

The tools mirror the REST API:
ToolREST equivalentWhat it does
upload_photoPOST /images/uploadUpload a person photo (publicly accessible URL or base64). Returns an imageId to pass to generate_try_on; photos expire after the retention window.
get_uploaded_photoReturn the most recent non-expired upload (imageId, expiry, a preview link, and an inline preview when available) — reuse it across conversations without re-uploading.
generate_try_onPOST /try-onGenerate a try-on. A person photo is required — pass exactly one of person_image_id or person_image_url. The garment goes in garments (an array; exactly one for now, mirroring the REST API’s products). Waits for the result and returns the image.
get_generationGET /generations/:idPoll a generation by id; returns the image once COMPLETED.
get_accountGET /account/creditsRemaining credits and the top-up URL.
All image URLs passed to the tools must be publicly accessible — no login-gated, signed-for-someone-else, or private links.

Example prompts

  • “Here’s a dress I like: <image URL> — show me wearing it.”
  • “Use this photo of me from now on: <image URL>.”
  • “Try these sneakers on me, then compare with the previous pair.”
  • “How many try-on credits do I have left?”

Privacy & retention

Uploaded photos and generated images follow the account retention window (7 days by default), then are deleted automatically. The full-resolution result links returned by the tools stay valid for 7 days.