Unsplash MCP Server

a Swift implementation of hellokaton/unsplash-mcp-server, with additional features like get_photo and random_photo

Local serverstdioGo

What is the Unsplash MCP server?

a Swift implementation of hellokaton/unsplash-mcp-server, with additional features like get_photo and random_photo. That is what the unsplash mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

Download the latest pre-built binary for your platform from the GitHub Releases page and follow the installation instructions below.

The tools it exposes

The server publishes 3 tools. What each one is for:

  • search_photos — Search for photos on Unsplash
  • get_photo — Get detailed information about a specific photo
  • random_photo — Get one or more random photos

What it needs from you

Configuration is passed through the environment: UNSPLASH_ACCESS_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Getting it running

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.

How it compares

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Unsplash's toolset — search_photos, get_photo, random_photo — is a fair guide to whether it matches your workflow. It is maintained by okooo5km; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Unsplash's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
search_photosSearch for photos on Unsplash
get_photoGet detailed information about a specific photo
random_photoGet one or more random photos

Configuration

VariableDescriptionRequired
UNSPLASH_ACCESS_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Unsplash to search photos.
  • Use Unsplash to get photo.
  • Use Unsplash to random photo.

Frequently asked questions

It is a Go MCP server that exposes Unsplash photo search, retrieval, and random photo tools for use by LLMs and other MCP clients.