mcp-server-giphy vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-giphy by magarcia | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 32 | ★ 85,748 |
| 30d uses | — | — |
| Score | 41 | 77 |
| Official | — | ✓ |
| Categories | MediaAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 12 mo ago | this month |
mcp-server-giphy · Summary
MCP server integrating Giphy API for AI models to search, retrieve, and utilize GIFs.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server-giphy · Use cases
- Enhance AI chat responses with relevant GIFs
- Create dynamic content generators with animated visuals
- Build entertainment-focused AI applications with rich media
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
mcp-server-giphy · Install
Installation
- Install the package: ``
bash npm install -g mcp-server-giphy``
- Create a
.envfile with your Giphy API key: ``bash GIPHY_API_KEY=your_api_key_here``
- Configure Claude Desktop by adding the following to your
claude_desktop_config.json:
{
"mcpServers": {
"giphy": {
"command": "npx",
"args": ["-y", "mcp-server-giphy"],
"env": {
"GIPHY_API_KEY": "<YOUR_API_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