Free high-resolution stock photos
## Unsplash MCP Server: Premium Stock Photography The **Unsplash MCP Server** integrates the world's most generous photography platform directly into Google Antigravity, enabling AI assistants to search, curate, and access millions of high-resolution photos from talented photographers worldwide. This integration brings stunning visual content to your development workflow completely free. ### Why Unsplash MCP? - **Exceptional Quality**: Access over 3 million photos curated for outstanding visual quality and composition - **Free Commercial Use**: All photos are free to use commercially with the Unsplash License - **Powerful Search**: Find exactly what you need with advanced search, filters, and AI-powered tagging - **High Resolution**: Download full-resolution images suitable for print, web, and large displays - **API-First Design**: Clean, developer-friendly API with excellent documentation and generous rate limits ### Key Features #### 1. Photo Search ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Find stunning mountain landscape photos for a travel website hero section" }], tools=[{ "name": "unsplash_search", "description": "Search photo library" }] ) ``` #### 2. Collections ```python # Browse themed collections response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show me Unsplash collections related to minimalist design and architecture" }], tools=[{"name": "unsplash_collections", "description": "Browse photo collections"}] ) ``` #### 3. Random Photos ```python # Get random themed photos response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get a random nature photo for our daily inspiration feature" }], tools=[{"name": "unsplash_random", "description": "Get random photos"}] ) ``` #### 4. Topic Exploration ```python # Explore photo topics response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show me the most popular topics and categories on Unsplash with sample photos" }], tools=[{"name": "unsplash_topics", "description": "Explore photo topics"}] ) ``` ### Configuration ```json { "mcpServers": { "unsplash": { "command": "npx", "args": ["-y", "@anthropic/mcp-unsplash"], "env": { "UNSPLASH_ACCESS_KEY": "your-access-key" } } } } ``` ### Use Cases **Hero Images**: Find stunning photos for website headers and landing page backgrounds. **Social Media Content**: Source beautiful images for social media posts and campaigns. **App Development**: Integrate real photos as placeholders during development and testing. **Design Inspiration**: Discover visual inspiration and create mood boards for design projects. The Unsplash MCP Server brings the world's finest free photography directly into your development workflow, enabling beautiful visual design with zero cost.
{
"mcpServers": {
"unsplash": {
"mcpServers": {
"unsplash": {
"env": {
"UNSPLASH_ACCESS_KEY": "your-access-key"
},
"args": [
"-y",
"unsplash-mcp-server"
],
"command": "npx"
}
}
}
}
}