loading…
Search for a command to run...
loading…
MCP server to search and download stock images from Pexels, Unsplash, and Pixabay
MCP server to search and download stock images from Pexels, Unsplash, and Pixabay
An MCP (Model Context Protocol) server for searching and downloading stock images from Pexels, Unsplash, and Pixabay.
Add to your MCP config (~/.claude/mcp.json or ~/.cursor/mcp.json):
{
"mcpServers": {
"stock-images": {
"command": "npx",
"args": ["-y", "stock-images-mcp"],
"env": {
"PEXELS_API_KEY": "your-key-here",
"UNSPLASH_API_KEY": "your-key-here",
"PIXABAY_API_KEY": "your-key-here"
}
}
}
}
docker build -t stock-images-mcp .
docker run -e PEXELS_API_KEY=xxx stock-images-mcp
Search for stock images across configured providers.
Parameters:
query (required): Search termprovider: "pexels", "unsplash", "pixabay", or "all" (default: "all")count: Number of results per provider (default: 5, max: 20)orientation: "landscape", "portrait", or "square"Download an image to local folder.
Parameters:
url (required): Image URLfilename: Output filename (auto-generated if omitted)folder: Destination folder (default: "./downloads")MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"stock-images-mcp": {
"command": "npx",
"args": []
}
}
}