{
  "info": {
    "name": "Tldv — mcp.ai",
    "description": "REST API for the Tldv 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/tldv",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "tldv_check_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "health"
          ]
        },
        "description": "Tool to verify API availability and health status. Use when you need to check if the tl;dv API is operational before making other API calls.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "tldv_download_meeting_recording",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/download/meeting/recording",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "download",
            "meeting",
            "recording"
          ]
        },
        "description": "Tool to download a meeting recording file. Returns the recording file by following the API's redirect to a signed download URL (valid for 6 hours). Use when you need to retrieve the actual recording c",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"meeting_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "tldv_get_meeting",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/meeting",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "meeting"
          ]
        },
        "description": "Tool to retrieve a meeting by its unique identifier. Returns detailed meeting metadata including id, name, date, URL, duration, organizer, invitees, template, and extra properties. Use when you need t",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"meetingId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "tldv_get_meeting_highlights",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/meeting/highlights",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "meeting",
            "highlights"
          ]
        },
        "description": "Tool to retrieve meeting notes (highlights) by meeting ID in human-readable format. Use when you need to fetch notes from a completed meeting. Highlights are only returned if the transcript is complet",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"meetingId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "tldv_get_meeting_transcript",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/meeting/transcript",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "meeting",
            "transcript"
          ]
        },
        "description": "Tool to retrieve the complete transcript of a meeting by its ID. Returns transcript segments with speaker names, text, and timestamps. The transcript is only returned if it is complete.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"meetingId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "tldv_import_meeting",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/import/meeting",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "import",
            "meeting"
          ]
        },
        "description": "Tool to import a meeting, recording, or other media from a publicly accessible URL. The URL must point to media in a supported format (mp3, mp4, wav, m4a, mkv, mov, avi, wma, flac). Returns a job ID t",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "tldv_list_meetings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/meetings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "meetings"
          ]
        },
        "description": "Tool to retrieve a paginated list of meetings from tldv. Returns meeting metadata including id, name, occurrence date, URL, duration, organizer details, invitees, and template information. Use when yo",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"meetingType\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}