photo
Pack: unsplash · Endpoint: https://gateway.pipeworx.io/unsplash/mcp
Fetch full metadata for a single Unsplash photo by id, including all image URLs (raw, full, regular, small, thumb), EXIF, location, tags, and photographer.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes |
Example call
Arguments
{
"id": "Dwu85P9SOIk"
}
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":"photo","arguments":{"id":"Dwu85P9SOIk"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('photo', {
"id": "Dwu85P9SOIk"
});
Response shape
| Field | Type | Description |
|---|---|---|
id | string | Unique photo identifier |
urls | object | Photo URLs at different sizes |
user | object | Photo author information |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique photo identifier"
},
"urls": {
"type": "object",
"description": "Photo URLs at different sizes",
"additionalProperties": true
},
"user": {
"type": "object",
"description": "Photo author information",
"additionalProperties": true
}
},
"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.