
MCP Server Giphy
Enables AI models to search, retrieve, and utilize GIFs from Giphy with features like content filtering, multiple search methods, and comprehensive metadata.
magarcia
README
MCP Server Giphy
MCP Server for the Giphy API, enabling AI models to search, retrieve, and utilize GIFs from Giphy.
Features
- Content Filtering: Filter results by rating (G, PG, PG-13, R) to ensure appropriate content
- Optimized Response Format: Response data optimized for AI model consumption
- Multiple Search Methods: Support for query-based, random, and trending GIF retrieval
- Comprehensive Metadata: Each GIF comes with full metadata including dimensions, formats, and attribution
- Pagination Support: Control result size and pagination for efficient API use
Tools
-
search_gifs
- Search for GIFs on Giphy with a query string
- Inputs:
query
(string): Search query term or phraselimit
(optional number): Maximum number of objects to return (default: 10, max: 50)offset
(optional number): Results offset (default: 0)rating
(optional string): Content rating (g, pg, pg-13, r)lang
(optional string): Language code (default: en)
- Returns: Array of GIF objects with metadata
-
get_random_gif
- Get a random GIF from Giphy, optionally filtered by tag
- Inputs:
tag
(optional string): Tag to limit random resultsrating
(optional string): Content rating (g, pg, pg-13, r)
- Returns: Random GIF object with metadata
-
get_trending_gifs
- Get currently trending GIFs on Giphy
- Inputs:
limit
(optional number): Maximum number of objects to return (default: 10, max: 50)offset
(optional number): Results offset (default: 0)rating
(optional string): Content rating (g, pg, pg-13, r)
- Returns: Array of trending GIF objects with metadata
Response Format
Each GIF in the response includes:
id
: Unique Giphy identifiertitle
: GIF titleurl
: URL to the GIF on Giphy websiteimages
: Object containing various image formats, each with:url
: Direct URL to the image filewidth
: Image widthheight
: Image height
- Additional metadata when available
Setup
Installing via Smithery
To install mcp-server-giphy for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install mcp-server-giphy --client claude
Giphy API Key
- Sign up for a Giphy Developer account
- Create an app to get an API key
- Choose between the free tier or paid options based on your needs
Environment Configuration
Create a .env
file with your API key:
GIPHY_API_KEY=your_api_key_here
Usage with Claude Desktop
To use this with Claude Desktop, add the following to your claude_desktop_config.json
:
{
"mcpServers": {
"giphy": {
"command": "npx",
"args": ["-y", "mcp-server-giphy"],
"env": {
"GIPHY_API_KEY": "<YOUR_API_KEY>"
}
}
}
}
Development
# Install dependencies
npm install
# Build the project
npm run build
# Start the server
npm start
# Run in development mode with hot reloading
npm run dev
# Run tests
npm test
# Use with MCP Inspector
npm run inspector
License
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor

Linear MCP Server
A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.