{
  "info": {
    "name": "Gan.AI — mcp.ai",
    "description": "REST API for the Gan.AI MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/gan_ai",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "gan_ai_get_avatar_video_inference_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/avatar/video/inference/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "avatar",
            "video",
            "inference",
            "details"
          ]
        },
        "description": "Tool to retrieve detailed status and metadata for a specific avatar video inference. Use when you have an inference_id and need to check its processing status and access video URLs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"inference_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gan_ai_get_photo_avatar_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/photo/avatar/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "photo",
            "avatar",
            "details"
          ]
        },
        "description": "Tool to retrieve detailed information for a specific photo avatar by ID. Use when you need to check photo avatar processing status and access its metadata and image URL.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"photo_avatar_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gan_ai_get_photo_avatar_inference_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/photo/avatar/inference/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "photo",
            "avatar",
            "inference",
            "details"
          ]
        },
        "description": "Tool to fetch photo avatar inference details. Use after obtaining a valid inference ID to retrieve detailed information.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"downloadable_link\": false,\n  \"photo_avatar_inference_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gan_ai_list_avatar_videos",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/avatar/videos",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "avatar",
            "videos"
          ]
        },
        "description": "Tool to list avatar video inferences. Use when you need to retrieve generated avatar videos with optional filtering by avatar ID, title, status, or date range.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"limit\": 0,\n  \"status\": \"\",\n  \"avatar_id\": \"\",\n  \"avatar_title\": \"\",\n  \"end_datetime\": \"\",\n  \"start_datetime\": \"\",\n  \"inference_title\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gan_ai_list_photo_avatar_inferences",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/photo/avatar/inferences",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "photo",
            "avatar",
            "inferences"
          ]
        },
        "description": "Tool to list photo avatar inferences. Use when you need to retrieve inference videos with optional filtering by avatar, title, status, or date range.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"limit\": 0,\n  \"title\": \"\",\n  \"status\": \"\",\n  \"end_datetime\": \"\",\n  \"start_datetime\": \"\",\n  \"photo_avatar_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gan_ai_list_photo_avatars",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/photo/avatars",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "photo",
            "avatars"
          ]
        },
        "description": "Tool to list avatars. Use when you need a paginated collection of avatars with filters. Example: \"List the first 10 published avatars created after 2023-01-01\".",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"limit\": 0,\n  \"title\": \"\",\n  \"status\": \"\",\n  \"end_datetime\": \"\",\n  \"start_datetime\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gan_ai_login",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/login",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "login"
          ]
        },
        "description": "Tool to authenticate a user and retrieve access and refresh tokens. Use when you need to login before calling other GAN.AI API actions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"password\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gan_ai_tts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/tts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "tts"
          ]
        },
        "description": "Convert text to speech using GAN.AI's Text-to-Speech API. This tool synthesizes speech from text using a specified voice. The voice_id must be obtained from the GAN.AI Get Voices endpoint or from your",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"text\": \"\",\n  \"voice_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}