{
  "info": {
    "name": "Wistia — mcp.ai",
    "description": "REST API for the Wistia 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/wistia",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "wistia_create_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "folder"
          ]
        },
        "description": "Create a Wistia folder for organizing media, optionally make it public, and optionally set the specified email as its owner.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"is_public\": false,\n  \"admin_email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wistia_delete_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "folder"
          ]
        },
        "description": "Delete a Wistia folder by hashed ID. This is destructive, but deleted content may remain recoverable for a limited account-dependent window before permanent purge.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder_hashed_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wistia_delete_media",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/media",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "media"
          ]
        },
        "description": "Delete one Wistia media item by hashed ID. This is destructive, but Wistia keeps deleted media recoverable for a limited account-dependent window before permanent purge.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"media_hashed_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wistia_get_analytics_summary",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/analytics/summary",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "analytics",
            "summary"
          ]
        },
        "description": "Return account-wide or single-media Wistia performance metrics for an inclusive start date and exclusive end date.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end_date\": \"\",\n  \"start_date\": \"\",\n  \"media_hashed_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wistia_get_media",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/media",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "media"
          ]
        },
        "description": "Return detailed metadata, assets, folder placement, tags, and processing state for one Wistia media item.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"media_hashed_id\": \"\",\n  \"description_format\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wistia_import_media_from_url",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/import/media/from/url",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "import",
            "media",
            "from",
            "url"
          ]
        },
        "description": "Start importing a publicly reachable media URL into Wistia, optionally into a folder. The response may be queued; call WISTIA_GET_MEDIA until its status is ready before using the media.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"name\": \"\",\n  \"description\": \"\",\n  \"low_priority\": false,\n  \"folder_hashed_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wistia_search_content",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/content",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "content"
          ]
        },
        "description": "Search the connected Wistia account for media, folders, subfolders, channels, and channel episodes by text and optional filters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tags\": \"\",\n  \"query\": \"\",\n  \"created_after\": \"\",\n  \"created_before\": \"\",\n  \"resource_types\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wistia_set_media_archived_state",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/media/archived/state",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "media",
            "archived",
            "state"
          ]
        },
        "description": "Archive one or more media items, or restore archived media into a destination folder, and wait for Wistia's background job to finish. Requires the connected account to have access to Wistia's Archivin",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"archived\": false,\n  \"folder_hashed_id\": \"\",\n  \"media_hashed_ids\": \"\",\n  \"wait_timeout_seconds\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wistia_update_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "folder"
          ]
        },
        "description": "Update a Wistia folder's name, description, public visibility, or anonymous transfer settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"is_public\": false,\n  \"description\": \"\",\n  \"folder_hashed_id\": \"\",\n  \"anonymous_can_upload\": false,\n  \"anonymous_can_download\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wistia_update_media",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/media",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "media"
          ]
        },
        "description": "Update a Wistia media item's name, description, tags, or still image reference. Wistia returns descriptions as normalized HTML.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"tags\": \"\",\n  \"description\": \"\",\n  \"media_hashed_id\": \"\",\n  \"new_still_media_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}