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. Exposed over MCP by the unsplash mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

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

Its toolset

Everything the assistant can do here goes through one of these:

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

Adding it to your client

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

Configuration

You will need one environment variable: UNSPLASH_ACCESS_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

When to reach for it

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.

Caveats

  • 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.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the unsplash mcp server does with a few real requests.

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

You need an Unsplash API Access Key (register at the Unsplash Developers Portal) and set it as the `UNSPLASH_ACCESS_KEY` environment variable. The server can run as a pre-built binary or built from source with Go 1.20 or later.