{
  "info": {
    "name": "VideoDB — mcp.ai",
    "description": "REST API for the VideoDB 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/video_db",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "video_db_ask_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/ask/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "ask",
            "collection"
          ]
        },
        "description": "Queue a grounded question-answer request over a VideoDB collection's Search V2 indexes. This search-family call is metered and requires Search V2 indexes. The returned status only confirms the async r",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mode\": \"\",\n  \"top_k\": 0,\n  \"question\": \"\",\n  \"collection_id\": \"\",\n  \"include_sources\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "video_db_create_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "collection"
          ]
        },
        "description": "Create a VideoDB collection for organizing and searching media. Collections are private by default.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"is_public\": false,\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "video_db_get_async_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/async/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "async",
            "result"
          ]
        },
        "description": "Check one VideoDB async operation by response ID. Returns its current state or terminal provider result without polling repeatedly, and fails when a completed nested provider response reports success:",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"response_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "video_db_get_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "collection"
          ]
        },
        "description": "Get metadata for one VideoDB collection by ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "video_db_get_media",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/media",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "media"
          ]
        },
        "description": "Get metadata for one VideoDB video, audio file, or image.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"media_id\": \"\",\n  \"media_type\": \"\",\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "video_db_ingest_media",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/ingest/media",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "ingest",
            "media"
          ]
        },
        "description": "Queue ingestion of a video, audio file, or image from an HTTP(S) URL into a VideoDB collection. This non-idempotent call is metered; live billing reported file_upload at 0.09 credits. Queue acceptance",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"name\": \"\",\n  \"media_type\": \"\",\n  \"callback_url\": \"\",\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "video_db_list_collections",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/collections",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "collections"
          ]
        },
        "description": "List collections available to the connected VideoDB API key and identify the default collection.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "video_db_list_media",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/media",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "media"
          ]
        },
        "description": "List videos, audio files, or images in one VideoDB collection using one normalized media interface. Video results return at most one page and may include an opaque continuation cursor.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"media_type\": \"\",\n  \"next_cursor\": \"\",\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "video_db_rename_media",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/rename/media",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "rename",
            "media"
          ]
        },
        "description": "Rename one VideoDB video, audio file, or image.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"media_id\": \"\",\n  \"media_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "video_db_search_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "collection"
          ]
        },
        "description": "Run synchronous semantic search over indexed media in a VideoDB collection. This metered call consumed 0.0015 credits per successful call during live Free_v1 probing, including calls that returned emp",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\",\n  \"top_k\": 0,\n  \"filter\": \"\",\n  \"index_ids\": \"\",\n  \"index_names\": \"\",\n  \"collection_id\": \"\",\n  \"return_fields\": \"\",\n  \"score_threshold\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "video_db_update_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "collection"
          ]
        },
        "description": "Update the name, description, or visibility of an existing VideoDB collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"is_public\": false,\n  \"description\": \"\",\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}