user

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

Fetch the public Unsplash profile for a given username, including bio, location, follower/following counts, total photos/likes/collections, and portfolio URL.

Parameters

NameTypeRequiredDescription
usernamestringyes

Example call

Arguments

{
  "username": "johndoe"
}

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":"user","arguments":{"username":"johndoe"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('user', {
  "username": "johndoe"
});

Response shape

FieldTypeDescription
usernamestringUser’s username
namestringUser’s display name
biostringUser’s biography
photos_countnumberNumber of photos uploaded by user
Full JSON Schema
{
  "type": "object",
  "properties": {
    "username": {
      "type": "string",
      "description": "User's username"
    },
    "name": {
      "type": "string",
      "description": "User's display name"
    },
    "bio": {
      "type": "string",
      "description": "User's biography"
    },
    "photos_count": {
      "type": "number",
      "description": "Number of photos uploaded by user"
    }
  },
  "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