{
  "info": {
    "name": "Speechmatics — mcp.ai",
    "description": "REST API for the Speechmatics 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/speechmatics",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "speechmatics_create_transcription_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/transcription/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "transcription",
            "job"
          ]
        },
        "description": "Create an asynchronous Speechmatics transcription job from a publicly fetchable media URL and return its job ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"model\": \"\",\n  \"domain\": \"\",\n  \"language\": \"\",\n  \"job_title\": \"\",\n  \"media_url\": \"\",\n  \"output_locale\": \"\",\n  \"enable_entities\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "speechmatics_delete_transcription_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/transcription/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "transcription",
            "job"
          ]
        },
        "description": "Delete a transcription job and its associated transcript and resources, optionally forcing termination of a running job.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"force\": false,\n  \"job_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "speechmatics_discover_speech_features",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/discover/speech/features",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "discover",
            "speech",
            "features"
          ]
        },
        "description": "Return Speechmatics' current Batch languages, locales, domains, translation support, and language-identification capabilities.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "speechmatics_get_transcript",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/transcript",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "transcript"
          ]
        },
        "description": "Retrieve a transcription job's completed transcript as structured JSON v2, plain text, or SRT text.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"format\": \"\",\n  \"job_id\": \"\",\n  \"wait_seconds\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "speechmatics_get_transcription_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/transcription/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "transcription",
            "job"
          ]
        },
        "description": "Get a transcription job's status, configuration, duration, and processing errors, optionally waiting briefly for a terminal state.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"job_id\": \"\",\n  \"wait_seconds\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "speechmatics_get_usage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/usage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "usage"
          ]
        },
        "description": "Get Batch transcription counts and audio duration aggregated over an optional UTC date range.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"since\": \"\",\n  \"until\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "speechmatics_list_transcription_jobs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/transcription/jobs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "transcription",
            "jobs"
          ]
        },
        "description": "List transcription jobs in the connected US1 project, newest first, with an agent-controlled continuation cursor.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"next_cursor\": \"\",\n  \"created_before\": \"\",\n  \"include_deleted\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}