{
  "info": {
    "name": "Rev AI — mcp.ai",
    "description": "REST API for the Rev 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/rev_ai",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "rev_ai_delete_custom_vocabulary",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/custom/vocabulary",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "custom",
            "vocabulary"
          ]
        },
        "description": "Tool to delete a completed custom vocabulary and its data. Use when you need to remove an unused vocabulary after confirming it's no longer needed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rev_ai_delete_job_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/job/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "job",
            "by",
            "id"
          ]
        },
        "description": "Tool to delete a completed transcription job and its data. Use when you need to permanently remove a finished job after confirming it's no longer needed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rev_ai_get_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account"
          ]
        },
        "description": "Tool to retrieve developer account details. Use after authenticating with Rev AI.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rev_ai_get_captions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/captions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "captions"
          ]
        },
        "description": "Tool to retrieve captions (SRT or VTT) for a completed Rev.ai transcription job. Use after confirming the job status is 'completed'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"accept\": \"\",\n  \"job_id\": \"\",\n  \"channel_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rev_ai_get_custom_vocabulary_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/custom/vocabulary/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "custom",
            "vocabulary",
            "details"
          ]
        },
        "description": "Tool to retrieve custom vocabulary processing details. Use when needing to fetch the status and submitted phrases for a specific custom vocabulary after creation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rev_ai_get_job_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/job/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "job",
            "by",
            "id"
          ]
        },
        "description": "Tool to fetch details of a transcription job by its ID. Use when confirming job status and metadata are accurate.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rev_ai_get_list_of_jobs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/list/of/jobs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "list",
            "of",
            "jobs"
          ]
        },
        "description": "Tool to get list of transcription jobs from the past 30 days. Use when you need to retrieve and paginate through recent transcription tasks.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"ending_before\": \"\",\n  \"starting_after\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rev_ai_get_transcript_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/transcript/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "transcript",
            "by",
            "id"
          ]
        },
        "description": "Tool to retrieve the transcript of a completed Rev.ai job. Use after confirming job is complete. Supports JSON format (with timestamps and speaker info) or plain text format.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"accept\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rev_ai_start_stream_transcription",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/start/stream/transcription",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "start",
            "stream",
            "transcription"
          ]
        },
        "description": "Tool to start a WebSocket transcription stream. Use when you need real-time speech-to-text streaming via Rev.ai.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"language\": \"\",\n  \"metadata\": \"\",\n  \"priority\": \"\",\n  \"start_ts\": 0,\n  \"transcriber\": \"\",\n  \"content_type\": \"\",\n  \"filter_profanity\": false,\n  \"detailed_partials\": false,\n  \"remove_disfluencies\": false,\n  \"skip_postprocessing\": false,\n  \"custom_vocabulary_id\": \"\",\n  \"delete_after_seconds\": 0,\n  \"enable_speaker_switch\": false,\n  \"max_connection_wait_seconds\": 0,\n  \"max_segment_duration_seconds\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rev_ai_submit_custom_vocabulary",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/submit/custom/vocabulary",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "submit",
            "custom",
            "vocabulary"
          ]
        },
        "description": "Tool to submit a custom vocabulary for improved speech recognition. Use when you want to process domain-specific terms asynchronously.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"phrases\": \"\",\n  \"metadata\": \"\",\n  \"custom_vocabulary_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rev_ai_submit_transcription_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/submit/transcription/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "submit",
            "transcription",
            "job"
          ]
        },
        "description": "Tool to submit a new transcription job. Use when you have a media URL or file bytes ready for async processing.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": \"\",\n  \"language\": \"\",\n  \"metadata\": \"\",\n  \"media_url\": \"\",\n  \"callback_url\": \"\",\n  \"filter_profanity\": false,\n  \"skip_diarization\": false,\n  \"skip_punctuation\": false,\n  \"custom_vocabularies\": \"\",\n  \"delete_after_seconds\": 0,\n  \"transcription_config\": {},\n  \"speaker_channel_count\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}