photo_download

Pack: unsplash · Endpoint: https://gateway.pipeworx.io/unsplash/mcp

Trigger the Unsplash required download-tracking event for a photo by id and return the download URL; must be called before presenting the download link to users per Unsplash API guidelines.

Parameters

NameTypeRequiredDescription
idstringyes

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_download","arguments":{"id":"Dwu85P9SOIk"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('photo_download', {
  "id": "Dwu85P9SOIk"
});

Response shape

FieldTypeDescription
urlstringDownload tracker URL for the photo
Full JSON Schema
{
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "description": "Download tracker URL for the photo"
    }
  },
  "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.

Regenerated from source · build July 9, 2026