Connects Claude to Unsplash's stock photo library through the Pipeworx gateway. The source doesn't list specific tools, but given it's Unsplash, you'd expect search, random photo fetch, and probably download operations. Worth noting this is part of Pipeworx's larger 673+ data source gateway, so you can either use this standalone endpoint or connect to their full gateway for broader access. Includes an ask_pipeworx tool that lets you query in plain English rather than calling APIs directly. If you're building anything that needs programmatic access to high quality stock photos during Claude conversations, this saves you from handling Unsplash's API directly.
Unsplash MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"unsplash": {
"url": "https://gateway.pipeworx.io/unsplash/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Unsplash data" })
The gateway picks the right tool and fills the arguments automatically.
MIT