Unsplash MCP Server

Unsplash MCP Server

Enables users to search for high-quality photos on Unsplash with support for advanced filtering by orientation and content safety. It provides formatted photo metadata and images in either base64-encoded format or as JSON with URLs via stdio transport.

Category
Visit Server

README

Unsplash MCP Server

English | δΈ­ζ–‡

A Model Context Protocol (MCP) server that provides photo search functionality using the Unsplash API with stdio transport.

Features

  • πŸ” Search photos on Unsplash with various filters
  • πŸ“„ Support for pagination, orientation filtering, and content filtering
  • πŸ“Š Returns formatted photo data including URLs, user info, and metadata
  • πŸ–ΌοΈ Two response formats: base64-encoded images (default) or JSON with URLs
  • πŸ”— Uses stdio transport for seamless MCP integration
  • ⚑ Command-line API key support for easy deployment
  • πŸš€ Concurrent image fetching for optimal performance

Installation

From npm (Recommended)

npm install -g @jeffkit/unsplash-mcp-server

From source

git clone https://github.com/jeffkit/unsplash-mcp-server.git
cd unsplash-mcp-server
npm install
npm run build

API Key Setup

Get your Unsplash API access key:

  1. Visit https://unsplash.com/developers
  2. Create a new application
  3. Copy your Access Key

Usage

Command Line

# Using command line argument (default: image format)
npx -y @jeffkit/unsplash-mcp-server --access-key YOUR_API_KEY

# Using text format (returns JSON with URLs)
npx -y @jeffkit/unsplash-mcp-server --access-key YOUR_API_KEY --response-format text

# Using environment variable  
UNSPLASH_ACCESS_KEY=YOUR_API_KEY @jeffkit/unsplash-mcp-server

# Show help
npx @jeffkit/unsplash-mcp-server --help

MCP Client Integration

Add to your MCP client configuration:

{
  "mcpServers": {
    "unsplash": {
      "command": "npx",
      "args": ["-y", "@jeffkit/unsplash-mcp-server", "--access-key", "YOUR_API_KEY"]
    }
  }
}

Claude Code

Especially for Claude Code, use the following command to add the MCP server to the MCP server list:

claude mcp add-json unsplash '{"command": "npx", "args": ["-y", "@jeffkit/unsplash-mcp-server", "--access-key", "YOUR_API_KEY"]}'

With text format (JSON URLs):

{
  "mcpServers": {
    "unsplash": {
      "command": "npx",
      "args": ["-y", "@jeffkit/unsplash-mcp-server", "--access-key", "YOUR_API_KEY", "--response-format", "text"]
    }
  }
}

Or with environment variable:

{
  "mcpServers": {
    "unsplash": {
      "command": "npx",
      "args": ["-y", "@jeffkit/unsplash-mcp-server"],
      "env": {
        "UNSPLASH_ACCESS_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Development

npm run dev -- --access-key YOUR_API_KEY
npm run dev -- --access-key YOUR_API_KEY --response-format text

Tools

search_photos

Search for photos on Unsplash with configurable response format.

Parameters:

  • query (required): Search term for photos
  • page (optional): Page number (default: 1)
  • per_page (optional): Number of photos per page (default: 10, max: 30)
  • orientation (optional): Filter by orientation ("landscape", "portrait", "squarish")
  • content_filter (optional): Content safety filter ("low", "high")

Response Formats:

Image Format (Default)

Returns base64-encoded images with metadata. Each image is returned as an MCP Image content type.

Text Format

Returns JSON with photo URLs and metadata:

{
  "total": 1000,
  "total_pages": 100,
  "current_page": 1,
  "per_page": 10,
  "results": [
    {
      "id": "photo_id",
      "description": "Beautiful landscape",
      "urls": {
        "raw": "https://...",
        "full": "https://...",
        "regular": "https://...",
        "small": "https://...",
        "thumb": "https://..."
      },
      "user": {
        "name": "Photographer Name",
        "username": "username"
      },
      "dimensions": {
        "width": 3000,
        "height": 2000
      },
      "likes": 100,
      "color": "#f0f0f0",
      "created_at": "2023-01-01T00:00:00Z"
    }
  ]
}

Response Format Configuration

The server can be configured at startup to return either:

  1. Image format (default): Base64-encoded images as MCP Image content with complete JSON metadata
  2. Text format: JSON with photo URLs and metadata as MCP Text content

Choose the format based on your MCP client's capabilities and use case.

Changelog

v1.0.2

  • ✨ Added complete image URLs in metadata for image mode
  • πŸ”§ Use original Unsplash API response structure for data integrity
  • πŸ“š Added Gemini CLI configuration examples
  • 🌏 Added Chinese documentation

v1.0.1

  • πŸ› Various bug fixes and performance improvements

v1.0.0

  • πŸŽ‰ Initial release
  • πŸ” Basic Unsplash photo search functionality
  • πŸ“Š Support for two response formats (image/text)
  • ⚑ stdio transport support

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured