English | 简体中文 Unsplash MCP Server is used for searching rich, high-quality images. It's ideal for developers who want to integrate Unsplash functionality into their own applications. - Advanced Image Search: Search Unsplash's extensive photo library with filters for: - Keyword relevance - Color schemes - Orientation options - Custom sorting and pagination Before installing this server, you'll nee
Add this skill
npx mdskills install hellokaton/unsplash-mcp-serverWell-documented MCP server providing Unsplash image search with clear setup instructions and examples
1[](https://mseep.ai/app/hellokaton-unsplash-mcp-server)23# Unsplash MCP Server45English | [简体中文](README_zh.md)67> A simple MCP server for seamless Unsplash image integration and search capabilities.89[](https://www.python.org/downloads/)10[](https://opensource.org/licenses/MIT)11[](https://smithery.ai/server/@hellokaton/unsplash-mcp-server)1213## 📋 Overview1415Unsplash MCP Server is used for searching rich, high-quality images. It's ideal for developers who want to integrate Unsplash functionality into their own applications.1617## ✨ Features1819- **Advanced Image Search**: Search Unsplash's extensive photo library with filters for:20 - Keyword relevance21 - Color schemes22 - Orientation options23 - Custom sorting and pagination2425## 🔑 Obtaining Unsplash Access Key2627Before installing this server, you'll need to obtain an Unsplash API Access Key:28291. Create a developer account at [Unsplash](https://unsplash.com/developers)302. Register a new application313. Get your Access Key from the application details page324. Use this key in the configuration steps below3334For more details, refer to the [official Unsplash API documentation](https://unsplash.com/documentation).3536## 🚀 Installation3738To install Unsplash Image Integration Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@hellokaton/unsplash-mcp-server):3940### IDE Setup4142**Cursor IDE**4344```bash45npx -y @smithery/cli@latest install @hellokaton/unsplash-mcp-server --client cursor --key 7558c683-****-****46```4748**Windsurf**4950```bash51npx -y @smithery/cli@latest install @hellokaton/unsplash-mcp-server --client windsurf --key 7558c683-****-****52```5354**Cline**5556```bash57npx -y @smithery/cli@latest install @hellokaton/unsplash-mcp-server --client cline --key 7558c683-****-****58```5960### Manual Installation6162```bash63# Clone the repository64git clone https://github.com/hellokaton/unsplash-mcp-server.git6566# Navigate to project directory67cd unsplash-mcp-server6869# Create virtual environment70uv venv7172# Install dependencies73uv pip install .74```7576**Cursor Editor Integration**7778Add the following configuration to your Cursor editor's `settings.json`:7980⚠️ **Note:** Please adjust the following configuration according to your actual installation:8182- If `uv` is not in your system PATH, use an absolute path (e.g., `/path/to/uv`)83- `./server.py` should be modified to the actual location of your server script (can use absolute path or path relative to workspace)8485<img src="screenshots/Snipaste_1.png" alt="Cursor Configuration Screenshot" />8687```json88{89 "mcpServers": {90 "unsplash": {91 "command": "uv",92 "args": ["run", "--with", "fastmcp", "fastmcp", "run", "./server.py"],93 "env": {94 "UNSPLASH_ACCESS_KEY": "${YOUR_ACCESS_KEY}"95 }96 }97 }98}99```100101### Using in Cursor102103<img src="screenshots/Snipaste_2.png" alt="Unsplash MCP in Cursor" />104105## 🛠️ Available Tools106107### Search Photos108109```json110{111 "tool": "search_photos",112 "query": "mountain",113 "per_page": 5,114 "orientation": "landscape"115}116```117118## 🔄 Other Implementations119120- Golang: [unsplash-mcp-server](https://github.com/douglarek/unsplash-mcp-server)121- Java: [unsplash-mcp-server](https://github.com/JavaProgrammerLB/unsplash-mcp-server)122123## 📄 License124125[MIT License](LICENSE)126127## 📬 Contact128129- [Twitter/X](https://x.com/hellokaton)130- [GitHub Issues](https://github.com/hellokaton/unsplash-mcp-server/issues)131
Full transparency — inspect the skill content before installing.