featured_collections
Pack: pexels · Endpoint: https://gateway.pipeworx.io/pexels/mcp
List Pexels’ featured curated collections; returns collection id, title, description, and media counts for photos and videos.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/pexels/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"featured_collections","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('featured_collections', {});
Response shape
| Field | Type | Description |
|---|---|---|
page | number | Current page number |
per_page | number | Number of results per page |
collections | array | Array of featured collection objects |
total_results | number | Total number of results available |
next_page | string | URL for next page of results |
Full JSON Schema
{
"type": "object",
"properties": {
"page": {
"type": "number",
"description": "Current page number"
},
"per_page": {
"type": "number",
"description": "Number of results per page"
},
"collections": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Collection ID"
},
"title": {
"type": "string",
"description": "Collection title"
},
"description": {
"type": [
"null",
"string"
],
"description": "Collection description"
},
"private": {
"type": "boolean",
"description": "Whether collection is private"
},
"media_count": {
"type": "number",
"description": "Number of media items in collection"
},
"photos_count": {
"type": "number",
"description": "Number of photos in collection"
},
"videos_count": {
"type": "number",
"description": "Number of videos in collection"
}
}
},
"description": "Array of featured collection objects"
},
"total_results": {
"type": "number",
"description": "Total number of results available"
},
"next_page": {
"type": "string",
"description": "URL for next page of results"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"pexels": {
"url": "https://gateway.pipeworx.io/pexels/mcp"
}
}
}
See Getting Started for client-specific install steps.