@hanoak/unsplash-mcp-server
@hanoak/unsplash-mcp-server offers an MCP interface to Unsplash, enabling AI assistants to search, browse, manage, and comply with Unsplash guidelines through 29 tools, pre-built prompts, and resources.
Photo Discovery & Retrieval: Search photos by keyword with orientation, color, sort, language, and safety filters; get random photos (optionally filtered); browse latest featured photos; retrieve photo by ID or slug; view photo download/view statistics over days.
Search: Search collections and users by keyword.
Users: Get public profile, list a user's photos (with sorting/filters) and collections, and view user statistics.
Collections & Topics: List featured collections, get collection details, list photos within a collection, find related collections. List curated topics with sorting/filtering, get topic details, list photos in a topic.
Platform Stats: Global Unsplash total and monthly (last 30 days) statistics.
Attribution & Compliance: Every photo result includes ready-to-use text/HTML attribution with UTM parameters. A dedicated
unsplash_track_downloadtool registers download events per Unsplash guidelines.Write & Profile Management (OAuth required): Create/update/delete collections, add/remove photos, update metadata on owned photos, get/update own profile.
Content Safety: Defaults to “high” content filter for search and random photos.
Flexible Image URLs: Provides multiple sizes (
raw,full,regular,small,thumb) and a raw imgix base URL for custom resizing.Pre-built Prompts & Guides: 8 prompts for tasks like finding a photo, building a gallery, curating collections; resources for attribution, OAuth setup, and prompt usage.
Technical & Security: Returns token-efficient trimmed JSON; robust error handling with retries, timeouts, and clear rate-limit/403 messages; redacts access keys from errors; implements SSRF guard for download URLs; runs on Node.js 20+, zero-install via
npx, and includes no telemetry.
Provides tools for searching and fetching Unsplash photos, collections, topics, users, and statistics, with built-in attribution and download tracking compliance.
unsplash-mcp-server
A production-ready Model Context Protocol (MCP) server for the Unsplash API. It gives AI assistants — Claude Desktop, Claude Code, Cursor, VS Code, Windsurf, and any MCP client — tools to search and fetch Unsplash photos, collections, topics, users, and stats, with Unsplash-guideline compliance built in (ready-to-use attribution and download tracking). Sign in once via OAuth to also manage your own profile, collections, and photo metadata.
Unofficial project. This is not affiliated with, endorsed by, or sponsored by Unsplash. "Unsplash" is a trademark of its respective owner. You use it under your own Unsplash API account and are responsible for complying with the Unsplash API Terms & Guidelines.
Table of contents
Related MCP server: stock-images-mcp
Features
29 tools across photos, search, users, collections, topics, stats, and your own profile — 21 read-only out of the box, plus 8 write/
metools once you sign in.Compliance built in — every photo comes with ready-to-use attribution (plain text + UTM-tagged HTML), and a dedicated
unsplash_track_downloadtool for the download-tracking guideline.Content safety —
content_filter=highby default on search and random photos.Flexible image URLs — each photo returns
raw/full/regular/small/thumbsizes, plus arawimgix base for custom sizes (?w=&h=&q=&fm=&fit=).Token-efficient output — full Unsplash responses are trimmed to a compact shape (URLs + metadata as text, never base64 image blobs) to keep model context small.
Robust — typed failures returned as MCP
isErrorresults the model can recover from, plus retries/backoff, timeouts,403hourly-limit handling, and rate-limit surfacing.Safe — access-key redaction in all error output, an SSRF guard on download URLs, and untrusted-text handling guidance for indirect prompt-injection defence.
Lean & modern — ESM, Node 20+, zero-install via
npx, no telemetry.
Quick start
1. Get an Unsplash access key
Register an application at unsplash.com/developers → New Application → accept the API terms → copy its Access Key (not the Secret Key). New apps start on the Demo tier (50 requests/hour); the Production tier (5,000/hour) requires Unsplash's review from your app dashboard. See Rate limits.
2. Add the server to your MCP client
Claude Desktop — edit claude_desktop_config.json:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"unsplash": {
"command": "npx",
"args": ["-y", "@hanoak/unsplash-mcp-server"],
"env": {
"UNSPLASH_ACCESS_KEY": "your_access_key",
"UNSPLASH_APP_NAME": "your_registered_app_name"
}
}
}
}Restart the client. See Configuration for every supported variable.
Claude Code (CLI):
claude mcp add unsplash \
--env UNSPLASH_ACCESS_KEY=your_access_key \
--env UNSPLASH_APP_NAME=your_registered_app_name \
-- npx -y @hanoak/unsplash-mcp-serverCursor — ~/.cursor/mcp.json (global) or .cursor/mcp.json (per-project): use the exact same mcpServers block as Claude Desktop above.
Windsurf — ~/.codeium/windsurf/mcp_config.json: same mcpServers block as Claude Desktop above.
VS Code — .vscode/mcp.json (note the top-level key is servers, not mcpServers):
{
"servers": {
"unsplash": {
"command": "npx",
"args": ["-y", "@hanoak/unsplash-mcp-server"],
"env": {
"UNSPLASH_ACCESS_KEY": "your_access_key",
"UNSPLASH_APP_NAME": "your_registered_app_name"
}
}
}
}Any other MCP client — run the server over stdio with:
UNSPLASH_ACCESS_KEY=your_access_key npx -y @hanoak/unsplash-mcp-serverPoint your client's stdio transport at command: npx, args: ["-y", "@hanoak/unsplash-mcp-server"], and pass the key via env.
3. Try it
Restart your client and ask:
"Find me a photo of mountains on Unsplash and show the attribution."
Example interaction
A typical flow: the model calls unsplash_search_photos, picks a result, presents the image with its attribution, and calls unsplash_track_download when it actually uses the photo.
You: Find a landscape photo of a foggy pine forest and credit the photographer.
Assistant: (calls
unsplash_search_photoswithquery: "foggy pine forest",orientation: "landscape", picks the best result, then callsunsplash_track_downloadwith itsdownload_location) Here's a great match — Photo by Jane Doe on Unsplash — along with a ready-to-embed credit line and the image URL.
Each tool returns a compact JSON payload. Here's the shape of a single photo result (illustrative values):
{
"photo": {
"id": "Dwu85P9SOIk",
"description": "brown rocky mountain under blue sky during daytime",
"width": 6000,
"height": 4000,
"color": "#734940",
"blur_hash": "L6Pj0^i_.AyE_3t7t7R**0o#DgR4",
"urls": {
"raw": "https://images.unsplash.com/photo-1465…?ixid=…",
"full": "https://images.unsplash.com/photo-1465…?ixid=…&q=85",
"regular": "https://images.unsplash.com/photo-1465…?ixid=…&w=1080",
"small": "https://images.unsplash.com/photo-1465…?ixid=…&w=400",
"thumb": "https://images.unsplash.com/photo-1465…?ixid=…&w=200"
},
"photo_page": "https://unsplash.com/photos/Dwu85P9SOIk",
"download_location": "https://api.unsplash.com/photos/Dwu85P9SOIk/download?ixid=…",
"photographer": {
"name": "Jane Doe",
"username": "janedoe",
"profile": "https://unsplash.com/@janedoe"
},
"attribution": {
"text": "Photo by Jane Doe on Unsplash",
"html": "Photo by <a href=\"https://unsplash.com/@janedoe?utm_source=your_app&utm_medium=referral\">Jane Doe</a> on <a href=\"https://unsplash.com/?utm_source=your_app&utm_medium=referral\">Unsplash</a>",
"photographerName": "Jane Doe",
"photographerUrl": "https://unsplash.com/@janedoe?utm_source=your_app&utm_medium=referral",
"unsplashUrl": "https://unsplash.com/?utm_source=your_app&utm_medium=referral"
}
},
"rate_limit": { "limit": 50, "remaining": 49 }
}Every tool result includes a rate_limit object (limit, remaining) read from the Unsplash response headers. List/search tools wrap results in photos/collections/users/topics arrays with pagination fields (total, total_pages, count, page, per_page).
Configuration
Configuration is entirely via environment variables — no config files, no flags for secrets.
Environment variable | Required | Description |
| yes | Your Unsplash API access key. The server exits at startup with a clear message if it is missing or blank. |
| recommended | Your registered Unsplash app name, used as the attribution |
| only for | Your Unsplash app's secret key. Only needed to run |
| only for | Override the default |
| no |
|
CLI flags: --version and --help are supported (e.g. npx @hanoak/unsplash-mcp-server --version). login/logout are subcommands, not flags — see below.
OAuth sign-in (optional)
The 21 core tools work out of the box with just UNSPLASH_ACCESS_KEY. To also use the 8 write/me tools (update your profile, manage collections, edit photo metadata), sign in once via OAuth:
On your app's page at unsplash.com/oauth/applications, add
http://localhost:8734/callbackas a redirect URI, and copy the Secret key.Set both
UNSPLASH_ACCESS_KEYandUNSPLASH_SECRET_KEYin your shell (not just the MCP client config —loginruns from your terminal).Run:
npx @hanoak/unsplash-mcp-server loginThis opens your browser to Unsplash's consent screen, captures the redirect on a short-lived local server, exchanges the code for a user access token, and saves it to
~/.config/unsplash-mcp-server/credentials.json(owner-only file permissions). Unsplash user access tokens don't expire, so this is a one-time step — no periodic re-auth.Restart your MCP client. The 8 write/
metools are now available; the 21 read-only tools are unaffected either way.
Run npx @hanoak/unsplash-mcp-server logout at any time to remove the stored token. To revoke it server-side, regenerate your app's secret key from the Unsplash dashboard.
Tools
All tools are namespaced unsplash_*. Most are read-only (annotated readOnlyHint: true); the exceptions are unsplash_track_download (registers a download event) and the 8 write/me tools below, all marked non-read-only and gated behind OAuth sign-in. Parameters map to the Unsplash API; per_page and stats quantity are clamped to a max of 30, and page is 1-based.
Domain | Tools |
Photos |
|
Search |
|
Users |
|
Collections |
|
Topics |
|
Stats |
|
Me |
|
🔒 = requires OAuth sign-in (login) first.
Tool reference
Tool | Parameters | Description |
|
| A single random photo, optionally filtered. |
|
| The latest featured photos, paginated. |
|
| A single photo by ID or slug, full detail. |
|
| Download/view totals for a photo over N days. |
|
| Registers a download on real use; returns a fresh, usable download URL. |
|
| Update metadata on a photo you own. Only the fields you pass are changed. |
Tool | Parameters | Description |
|
| Keyword photo search with rich filters. |
|
| Keyword collection search. |
|
| Keyword user search. |
Tool | Parameters | Description |
|
| A user's public profile. |
|
| A user's photos, paginated. |
|
| A user's collections, paginated. |
|
| A user's download/view totals over N days. |
Tool | Parameters | Description |
|
| The latest featured collections. |
|
| A single collection by ID. |
|
| Photos within a collection, paginated. |
|
| Collections related to a given one. |
|
| Create a new collection you own. |
|
| Update a collection you own. Only the fields you pass change. |
|
| Permanently delete a collection you own. Cannot be undone. |
|
| Add a photo to a collection you own. |
|
| Remove a photo from a collection you own. |
Tool | Parameters | Description |
| (none) | Your own profile, including private fields (email, uploads remaining). |
|
| Update your own profile. Only the fields you pass are changed. |
Tool | Parameters | Description |
|
| Curated topics, paginated. |
|
| A single topic. |
|
| Photos within a topic, paginated. |
| (none) | Unsplash-wide totals (photos, downloads, …). |
| (none) | Unsplash-wide totals for the past 30 days. |
Output shape
Tools return trimmed, token-efficient JSON rather than raw Unsplash responses:
Photos →
id,description,width/height,color,blur_hash,urls(raw/full/regular/small/thumb),photo_page,download_location,photographer, and a ready-to-useattributionobject. See Example interaction.Users →
id,username,name,bio,location,profile_url,profile_image,total_photos,total_collections.Collections / Topics → title, description, counts, page link, curator/owners, and a compact
cover_photo.Every result carries a
rate_limit(limit,remaining); lists/searches add pagination fields.
Resources & prompts
Beyond tools, the server also exposes:
Resources — compact guides your client can pull in as context:
unsplash://guides/attribution— attribution, download tracking, hotlinking, content safety.unsplash://guides/oauth-setup— how to sign in for the 8 write/metools.unsplash://guides/prompts— which of the prompts below to use for a given task.
Prompts — ready-made tasks your client can surface directly; each expands into a guided, multi-step tool-calling task:
Prompt
Arguments
What it does
find_photosubject(required),orientation?Search for one photo and present it with attribution.
photo_gallerytheme(required),count?,orientation?,color?Build a themed set of photos (up to 10), each with attribution.
topic_spotlighttopic(required),count?Showcase a curated topic's best photos.
photographer_spotlightusername(required),count?A photographer's profile + their most popular work.
platform_pulse(none)
A quick Unsplash-wide stats briefing.
curate_collection🔒theme(required),count?,collection_id?Search, then build (or extend) a real collection from the matches.
describe_photo🔒id(required),description?,tags?Add a description/tags to a photo you own.
refresh_profile🔒bio?,location?,url?Update your own bio, location, or portfolio URL.
🔒 = requires OAuth sign-in first.
Example prompts
Natural-language asks that map cleanly onto the tools:
"Find a photo of a foggy forest at sunrise and give me the HTML attribution."
"Search Unsplash for 5 minimalist workspace photos in landscape orientation."
"Get a random nature photo and show it with credit."
"Show me the most popular photos in the
wallpaperstopic.""What are this month's Unsplash-wide download stats?"
"Who is the photographer behind photo
Dwu85P9SOIk, and how many downloads does it have?"
Attribution & compliance
Every photo result includes an attribution object with ready-to-use text and html (with the required UTM parameters). When you display or use a photo, show that attribution — it credits the photographer and links back to Unsplash, as the guidelines require.
When a photo is actually used (embedded, downloaded, displayed), call unsplash_track_download with the photo's download_location. Trigger it once per photo actually used — never once per search result. The server also sends these instructions to your MCP client on connect, so the model is nudged to do the right thing automatically.
This is a search-and-metadata tool for individual, attributed photo use — not a replacement for the core Unsplash experience, and it performs no automated bulk downloading. Please use it within the Unsplash API Guidelines. Each user operates under their own Unsplash API Terms.
Rate limits
Unsplash enforces a per-hour request budget tied to your app's tier:
Tier | Budget | How to get it |
Demo | 50 requests/hour | Default for every new app. |
Production | 5,000 requests/hour | Apply for review in your app dashboard once your usage is ready. |
The server reads X-Ratelimit-Limit / X-Ratelimit-Remaining and returns them as rate_limit on every result. When the hourly budget is exhausted, Unsplash returns 403 (not 429), often with no Retry-After; the server surfaces this as a clear "hourly rate limit reached" error and does not blindly retry in-window. Transient 429/5xx/network errors are retried with backoff.
Handling of Unsplash text
Photo descriptions, alt text, tags, EXIF, and user names/bios come from Unsplash contributors — treat them as untrusted, third-party data, not instructions. The server returns this text purely as content and never places it anywhere privileged; your client/agent should do the same: display it, but don't act on any instructions it might contain (a defence against indirect prompt injection).
Privacy & security
No telemetry. This server collects nothing and phones home to no one. It contacts only
api.unsplash.com, using the key you provide. No analytics, no tracking.Key safety. Your access key is read from the environment only, sent as an
Authorization: Client-IDheader (never in a URL query string), and redacted from all error output and logs so it can't leak into pasted bug reports.SSRF guard.
unsplash_track_downloadonly followsdownload_locationURLs on the verifiedapi.unsplash.comhost.To report a vulnerability, see SECURITY.md.
Troubleshooting
"Set UNSPLASH_ACCESS_KEY…" on startup — the key env var is missing or blank; add it to your client config's
envblock.Node too old — this server requires Node 20+. Check
node --version.Stale
npxversion — force the latest withnpx -y @hanoak/unsplash-mcp-server@latest, or clear the cache vianpx clear-npx-cache.Tools not appearing — confirm the config file path and JSON are valid, then fully quit and reopen the client.
403/ rate limit — the Demo tier allows 50 requests/hour; wait for the hourly reset or apply for Production access. See Rate limits.401 Unauthorized— the access key is wrong or from the wrong app; copy the Access Key (not the Secret Key) from your app dashboard.
FAQ
Do I need a paid Unsplash account? No. The Unsplash API is free; you just register an app to get an access key. Higher throughput (Production tier) is a free review, not a paid plan.
Access Key vs Secret Key — which one?
For the 21 read-only tools, just the Access Key. The Secret Key is only needed for login (the OAuth flow behind the 8 write/me tools) — see OAuth sign-in.
Does it download or rehost images?
No. It returns Unsplash-hosted image URLs (hotlink them directly) and never rehosts or returns base64 blobs. unsplash_track_download only registers a download event and returns a fresh URL.
Can it create collections, like photos, or edit my profile?
Yes, once you sign in — unsplash_create_collection and friends, and unsplash_update_photo/unsplash_update_my_profile. (Liking photos is not currently exposed as a tool.)
Does it work outside Claude? Yes — it's a standard stdio MCP server. See the client setup section for Claude Code, Cursor, VS Code, Windsurf, and generic stdio.
Requirements
Node.js >= 20 (Node 18 is end-of-life).
An Unsplash API access key.
Compatibility
Component | Supported |
Node.js | 20 and 22, tested in CI; |
OS | Linux, macOS, and Windows (all tested in CI). |
MCP SDK |
|
Transport | stdio (HTTP/SSE may be added in a future release). |
Roadmap
Full detail lives in docs/ROADMAP.md. In short:
v1 (shipped) — the 21 read-only tools, attribution + download-tracking compliance, the attribution resource, and the
find_photoprompt.v2 (shipped) — the 8 OAuth write /
meendpoints (profile, collections, photo metadata) via alogin/logoutCLI and the Unsplash authorization-code flow.v3 (current) — 7 more MCP prompts covering every tool domain (see Resources & prompts). A
.mcpbDesktop Extension was considered for this phase but dropped to unscheduled future scope —npxalready works across every supported client.
Changes are tracked in CHANGELOG.md; the project follows Semantic Versioning.
Contributing
Contributions are welcome — see CONTRIBUTING.md and our Code of Conduct. It covers local setup, the test suite, testing tools by hand with the MCP Inspector, and the versioning/deprecation policy. To report a vulnerability, see SECURITY.md.
Contact & community
Maintained by Hanoak S. The fastest way to get help or propose a feature is to open an issue — it's public, searchable, and helps the whole community. For anything else, reach out:
If this project helps you, a ⭐ on GitHub is appreciated — it aids discoverability for others looking for an Unsplash MCP server.
License
MIT © Hanoak S. Not affiliated with Unsplash.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceA lightweight server that enables seamless integration with Unsplash's image library, allowing developers to search for high-quality photos with various filters directly from the Cursor editor.1233MIT
- AlicenseBqualityDmaintenanceMCP server to search and download stock images from Pexels, Unsplash, and Pixabay2283MIT
- AlicenseAqualityDmaintenanceAn MCP server for searching and retrieving photos from Unsplash with proper attribution, designed for LLMs building content pages.316MIT
- Alicense-qualityDmaintenanceAn MCP server for the Unsplash API that enables searching, downloading, and inserting high-quality images with automatic photographer attribution into local projects.291MIT
Related MCP Connectors
MCP (Model Context Protocol) server for Appwrite
Microlink MCP — wraps Microlink API (free tier, no auth required)
Product Hunt MCP — wraps the Product Hunt GraphQL API v2 (api.producthunt.com)
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hanoak/unsplash-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server