MCP Server
Active
MIT
Unsplash MCP Server MCP Server
io.github.hanoak/unsplash-mcp-server
What is the Unsplash MCP Server MCP server?
MCP server for the Unsplash API: search & fetch photos with attribution + download tracking.
How to install Unsplash MCP Server
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
UNSPLASH_ACCESS_KEYrequiredsecretYour Unsplash API access key (sent as Authorization: Client-ID).
UNSPLASH_APP_NAMERegistered Unsplash app name, used as the attribution utm_source.
LOG_LEVELLog verbosity; all logs go to stderr.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"unsplash-mcp-server": {
"command": "npx",
"args": [
"-y",
"@hanoak/unsplash-mcp-server"
],
"env": {
"UNSPLASH_ACCESS_KEY": "<YOUR_UNSPLASH_ACCESS_KEY>",
"UNSPLASH_APP_NAME": "<YOUR_UNSPLASH_APP_NAME>",
"LOG_LEVEL": "<YOUR_LOG_LEVEL>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"unsplash-mcp-server": {
"command": "npx",
"args": [
"-y",
"@hanoak/unsplash-mcp-server"
],
"env": {
"UNSPLASH_ACCESS_KEY": "<YOUR_UNSPLASH_ACCESS_KEY>",
"UNSPLASH_APP_NAME": "<YOUR_UNSPLASH_APP_NAME>",
"LOG_LEVEL": "<YOUR_LOG_LEVEL>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"unsplash-mcp-server": {
"command": "npx",
"args": [
"-y",
"@hanoak/unsplash-mcp-server"
],
"env": {
"UNSPLASH_ACCESS_KEY": "<YOUR_UNSPLASH_ACCESS_KEY>",
"UNSPLASH_APP_NAME": "<YOUR_UNSPLASH_APP_NAME>",
"LOG_LEVEL": "<YOUR_LOG_LEVEL>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"unsplash-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@hanoak/unsplash-mcp-server"
],
"env": {
"UNSPLASH_ACCESS_KEY": "<YOUR_UNSPLASH_ACCESS_KEY>",
"UNSPLASH_APP_NAME": "<YOUR_UNSPLASH_APP_NAME>",
"LOG_LEVEL": "<YOUR_LOG_LEVEL>"
}
}
}
}Claude Code
claude mcp add unsplash-mcp-server --env UNSPLASH_ACCESS_KEY=<YOUR_UNSPLASH_ACCESS_KEY> --env UNSPLASH_APP_NAME=<YOUR_UNSPLASH_APP_NAME> --env LOG_LEVEL=<YOUR_LOG_LEVEL> -- npx -y @hanoak/unsplash-mcp-serverRelated MCP servers
Pexels MCP Server
Active
MCP server for the Pexels API: search & fetch stock photos, videos, and collections.
2
View repository →TypeScript
MIT
Pixabay MCP Server
Active
Unofficial MCP server for the Pixabay API: search and fetch royalty-free images and videos.
1
View repository →TypeScript
MIT