{
  "info": {
    "name": "LMNT — mcp.ai",
    "description": "REST API for the LMNT 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/lmnt",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "lmnt_create_voice",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/voice",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "voice"
          ]
        },
        "description": "Creates a custom voice in LMNT by training on uploaded audio samples. The voice can then be used for text-to-speech synthesis. Returns the voice ID and metadata upon successful creation. The voice may",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"files\": {},\n  \"gender\": \"\",\n  \"enhance\": false,\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "lmnt_delete_voice_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/voice/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "voice",
            "info"
          ]
        },
        "description": "Deletes a voice from your LMNT account. This operation permanently removes the voice and cancels any pending operations on it. This action cannot be undone. Only voices owned by you (owner='me') can b",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "lmnt_generate_speech_with_metadata",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/speech/with/metadata",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "speech",
            "with",
            "metadata"
          ]
        },
        "description": "Generates speech from text and returns JSON with base64-encoded audio and optional word-level timing metadata. Use when you need the synthesis seed or word timestamps for subtitle synchronization. For",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"seed\": 0,\n  \"text\": \"\",\n  \"debug\": false,\n  \"model\": \"\",\n  \"top_p\": 0,\n  \"voice\": \"\",\n  \"format\": \"\",\n  \"language\": \"\",\n  \"sample_rate\": 0,\n  \"temperature\": 0,\n  \"return_durations\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "lmnt_get_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account"
          ]
        },
        "description": "Retrieves account information including subscription plan details and current usage statistics.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "lmnt_get_voice_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/voice/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "voice",
            "info"
          ]
        },
        "description": "Gets metadata for a specific LMNT voice, including active status, supported languages, and plan availability. Useful for validating a voice ID before using it in synthesis requests.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "lmnt_get_voices_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/voices/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "voices",
            "list"
          ]
        },
        "description": "Retrieves a list of available voices from LMNT. Returns both system-provided preset voices and any custom voices you have created. Use filters to narrow results by ownership (system vs custom) or star",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"owner\": \"\",\n  \"starred\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "lmnt_synthesize_speech",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/synthesize/speech",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "synthesize",
            "speech"
          ]
        },
        "description": "Synthesizes speech from text using LMNT's AI voices. Converts text (up to 5000 characters) into natural-sounding speech audio using a specified voice. Returns base64-encoded audio at `data.response_da",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"seed\": 0,\n  \"text\": \"\",\n  \"debug\": false,\n  \"model\": \"\",\n  \"top_p\": 0,\n  \"voice\": \"\",\n  \"format\": \"\",\n  \"language\": \"\",\n  \"sample_rate\": 0,\n  \"temperature\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "lmnt_update_voice",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/voice",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "voice"
          ]
        },
        "description": "Updates information about a specific voice in LMNT. You can update the name, description, gender, starred status, and unfreeze state of a voice. Note: Only user-owned voices (owner='me') can have thei",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"name\": \"\",\n  \"gender\": \"\",\n  \"starred\": false,\n  \"unfreeze\": false,\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}