photo_curated
Pack: pexels · Endpoint: https://gateway.pipeworx.io/pexels/mcp
Fetch Pexels’ curated editorial photo feed; returns paginated photo objects with image URLs in multiple sizes (original, large, medium, small, tiny) and photographer info.
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":"photo_curated","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('photo_curated', {});
Response shape
| Field | Type | Description |
|---|---|---|
page | integer | Current page number |
per_page | integer | Number of results per page |
photos | array | Array of curated photo objects |
next_page | string | URL for next page of results |
Full JSON Schema
{
"type": "object",
"properties": {
"page": {
"type": "integer",
"description": "Current page number"
},
"per_page": {
"type": "integer",
"description": "Number of results per page"
},
"photos": {
"type": "array",
"description": "Array of curated photo objects",
"items": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Photo ID"
},
"width": {
"type": "integer",
"description": "Photo width in pixels"
},
"height": {
"type": "integer",
"description": "Photo height in pixels"
},
"url": {
"type": "string",
"description": "URL to photo page"
},
"photographer": {
"type": "string",
"description": "Photographer name"
},
"photographer_url": {
"type": "string",
"description": "URL to photographer profile"
},
"photographer_id": {
"type": "integer",
"description": "Photographer ID"
},
"avg_color": {
"type": "string",
"description": "Average color of photo as hex"
},
"src": {
"type": "object",
"description": "Image sources in different sizes",
"additionalProperties": {
"type": "string"
}
},
"liked": {
"type": "boolean",
"description": "Whether photo is liked by user"
},
"alt": {
"type": "string",
"description": "Alt text for photo"
}
}
}
},
"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.