GIF search and management
## Giphy MCP Server: Animated Content Discovery The **Giphy MCP Server** integrates the world's largest library of animated GIFs and stickers directly into Google Antigravity, enabling AI assistants to search, retrieve, and manage animated content programmatically. This integration brings engaging visual content discovery to your development workflow for building expressive applications. ### Why Giphy MCP? - **Massive Library**: Access billions of GIFs and stickers from the world's largest animated content platform - **Smart Search**: Find relevant content with trending topics, categories, and intelligent search algorithms - **Multiple Formats**: Retrieve content in various sizes and formats optimized for different use cases - **Content Safety**: Access content rating filters for family-friendly or age-appropriate experiences - **Brand Integration**: Access branded content and create custom channels for marketing campaigns ### Key Features #### 1. GIF Search ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Find funny reaction GIFs for expressing excitement that are appropriate for work" }], tools=[{ "name": "giphy_search", "description": "Search GIF library" }] ) ``` #### 2. Trending Content ```python # Get trending GIFs response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show me the top trending GIFs right now suitable for social media" }], tools=[{"name": "giphy_trending", "description": "Access trending content"}] ) ``` #### 3. Sticker Search ```python # Find animated stickers response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Find celebration stickers with transparent backgrounds for our messaging app" }], tools=[{"name": "giphy_stickers", "description": "Search sticker library"}] ) ``` #### 4. Random GIFs ```python # Get random content by tag response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get a random motivational GIF for our daily standup bot" }], tools=[{"name": "giphy_random", "description": "Get random GIFs by tag"}] ) ``` ### Configuration ```json { "mcpServers": { "giphy": { "command": "npx", "args": ["-y", "@anthropic/mcp-giphy"], "env": { "GIPHY_API_KEY": "your-giphy-api-key" } } } } ``` ### Use Cases **Messaging Applications**: Add GIF keyboards and sticker packs to chat applications for expressive communication. **Social Media Tools**: Integrate animated content into social media scheduling and content creation tools. **Marketing Campaigns**: Find and deploy on-brand animated content for digital marketing campaigns. **Slack/Discord Bots**: Build bots that respond with relevant GIFs based on conversation context. The Giphy MCP Server brings animated content discovery directly into your development workflow, enabling engaging visual experiences in your applications.
{
"mcpServers": {
"giphy": {
"mcpServers": {
"giphy": {
"env": {
"GIPHY_API_KEY": "your-api-key"
},
"args": [
"-y",
"giphy-mcp-server"
],
"command": "npx"
}
}
}
}
}