collection
Pack: unsplash · Endpoint: https://gateway.pipeworx.io/unsplash/mcp
Fetch metadata for a single Unsplash collection by id, including title, description, total photos, tags, cover photo, and curator profile.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes |
Example call
Arguments
{
"id": "3FusKJf17II"
}
curl
curl -X POST https://gateway.pipeworx.io/unsplash/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"collection","arguments":{"id":"3FusKJf17II"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('collection', {
"id": "3FusKJf17II"
});
Response shape
| Field | Type | Description |
|---|---|---|
id | number | Unique collection identifier |
title | string | Collection title |
description | string | Collection description |
total_photos | number | Number of photos in collection |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Unique collection identifier"
},
"title": {
"type": "string",
"description": "Collection title"
},
"description": {
"type": "string",
"description": "Collection description"
},
"total_photos": {
"type": "number",
"description": "Number of photos in collection"
}
},
"additionalProperties": true
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"unsplash": {
"url": "https://gateway.pipeworx.io/unsplash/mcp"
}
}
}
See Getting Started for client-specific install steps.