{
  "info": {
    "name": "Pexels — mcp.ai",
    "description": "REST API for the Pexels 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/pexels",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "pexels_collection_media",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/collection/media",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "collection",
            "media"
          ]
        },
        "description": "Tool to get all media within a collection by its ID. Use when you need to fetch paginated media from a specific collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pexels_curated_photos",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/curated/photos",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "curated",
            "photos"
          ]
        },
        "description": "Tool to get real-time curated photos. Use when you need to fetch curated photos with pagination support.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pexels_featured_collections",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/featured/collections",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "featured",
            "collections"
          ]
        },
        "description": "Tool to get featured collections. Use when you need curated collections of photos and videos with pagination support.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pexels_get_photo",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/photo",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "photo"
          ]
        },
        "description": "Tool to retrieve detailed information about a specific photo. Use when you have a valid photo ID to fetch metadata including dimensions, photographer details, and image URLs. Use after confirming the ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pexels_get_video_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/video/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "video",
            "by",
            "id"
          ]
        },
        "description": "Tool to retrieve detailed information about a specific video from Pexels. Use when you have a valid video ID to fetch metadata including dimensions, duration, videographer details, and available video",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pexels_my_collections",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/my/collections",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "my",
            "collections"
          ]
        },
        "description": "Tool to get all of the user's collections on Pexels. Use when you need to list a user's collections with pagination support.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pexels_popular_videos",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/popular/videos",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "popular",
            "videos"
          ]
        },
        "description": "Tool to retrieve current popular Pexels videos. Use when you want to fetch trending videos from Pexels.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pexels_search_photos",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/photos",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "photos"
          ]
        },
        "description": "Tool to search for photos on Pexels. Use when you need to retrieve photos by a search term and optional filters. Call after confirming you have a valid Pexels API key. Response image URLs are nested u",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"size\": \"\",\n  \"color\": \"\",\n  \"query\": \"\",\n  \"locale\": \"\",\n  \"per_page\": 0,\n  \"orientation\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "pexels_search_videos",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/videos",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "videos"
          ]
        },
        "description": "Tool to search for videos on Pexels by query and optional filters. Use when you need to find relevant video assets. Combining multiple filters with a narrow query may return few or no results; only ap",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"size\": \"\",\n  \"query\": \"\",\n  \"per_page\": 0,\n  \"orientation\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}