unsplash-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
unsplash-mcp-server by hellokaton | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 219 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | MediaDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
unsplash-mcp-server · Summary
An MCP server for searching Unsplash's high-quality photo library with advanced filters.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
unsplash-mcp-server · Use cases
- Content creators needing to find specific images for blog posts or social media
- Application developers wanting to embed image search functionality
- Designers looking for inspiration with filterable image options
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
unsplash-mcp-server · Install
Installation
**Automatic via Smithery:**
npx -y @smithery/cli@latest install @hellokaton/unsplash-mcp-server --client cursor --key YOUR_KEY**Manual Installation:**
git clone https://github.com/hellokaton/unsplash-mcp-server.git
cd unsplash-mcp-server
uv venv
uv pip install .**Claude Desktop Configuration:**
{
"mcpServers": {
"unsplash": {
"command": "uv",
"args": ["run", "--with", "fastmcp", "fastmcp", "run", "./server.py"],
"env": {
"UNSPLASH_ACCESS_KEY": "YOUR_ACCESS_KEY"
}
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything