{
  "info": {
    "name": "AssemblyAI — mcp.ai",
    "description": "REST API for the AssemblyAI 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/assemblyai",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "assemblyai_delete_transcript",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/transcript",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "transcript"
          ]
        },
        "description": "Irreversibly delete a transcript's stored content. AssemblyAI retains a tombstone that later GET and list calls can still return, and those later responses may omit the is_deleted marker.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"transcript_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "assemblyai_export_subtitles",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/export/subtitles",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "export",
            "subtitles"
          ]
        },
        "description": "Export a completed transcript as raw SRT or WebVTT subtitle text.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"transcript_id\": \"\",\n  \"subtitle_format\": \"\",\n  \"chars_per_caption\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "assemblyai_get_redacted_audio",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/redacted/audio",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "redacted",
            "audio"
          ]
        },
        "description": "Get the processing status and short-lived signed download URL for PII-redacted audio. The transcript must have been submitted with text and audio PII redaction enabled and at least one explicit redact",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"transcript_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "assemblyai_get_transcript",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/transcript",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "transcript"
          ]
        },
        "description": "Retrieve an AssemblyAI transcript's current state and results, optionally waiting until asynchronous processing completes or fails.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"transcript_id\": \"\",\n  \"wait_for_completion\": false,\n  \"poll_timeout_seconds\": 0,\n  \"poll_interval_seconds\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "assemblyai_get_transcript_segments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/transcript/segments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "transcript",
            "segments"
          ]
        },
        "description": "Return sentence- or paragraph-level segments, timestamps, confidence, and words for a completed transcript.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"granularity\": \"\",\n  \"transcript_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "assemblyai_list_transcripts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/transcripts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "transcripts"
          ]
        },
        "description": "List project transcripts from the last 90 days, newest first, with optional filters and a cursor for the next older page.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"cursor\": \"\",\n  \"status\": \"\",\n  \"created_on\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "assemblyai_search_transcript",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/transcript",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "transcript"
          ]
        },
        "description": "Find words or phrases in a completed transcript and return occurrence counts and timestamps.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"terms\": \"\",\n  \"transcript_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "assemblyai_submit_transcript",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/submit/transcript",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "submit",
            "transcript"
          ]
        },
        "description": "Queue an asynchronous pre-recorded transcription from a reachable media URL. Returns immediately with the transcript ID and processing status; use GET_TRANSCRIPT to wait for results.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"domain\": \"\",\n  \"webhook\": {},\n  \"language\": {},\n  \"audio_url\": \"\",\n  \"prompting\": {},\n  \"formatting\": {},\n  \"audio_range\": {},\n  \"temperature\": 0,\n  \"intelligence\": {},\n  \"pii_redaction\": {},\n  \"speech_models\": \"\",\n  \"speech_threshold\": 0,\n  \"speaker_detection\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "assemblyai_upload_media",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/media",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "media"
          ]
        },
        "description": "Upload an audio or video file to AssemblyAI and return the project-private URL to use when submitting a transcript. AssemblyAI provides no API to delete this uploaded object; it remains subject to pro",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"media_file\": {},\n  \"content_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}