Giphy Server
БесплатноНе проверенAn MCP server that allows AI agents to search and retrieve GIFs using the Giphy API.
Описание
An MCP server that allows AI agents to search and retrieve GIFs using the Giphy API.
README
An MCP (Model Context Protocol) server that allows AI agents to search and retrieve GIFs using the Giphy API. This provides a rich way for agents to express humor, reactions, or find relevant visual context.

Prerequisites
- Python 3.10+
- A Giphy API Key. You can get a free API key at the Giphy Developer Portal.
Installation
For general use, install the package via pip:
pip install giphy-mcp
For development:
- Clone the repository:
git clone https://github.com/Szatek/giphy-mcp-server.git cd giphy-mcp-server - Create a virtual environment and install in editable mode:
python -m venv venv # On Windows .\venv\Scripts\activate # On Linux/macOS source venv/bin/activate pip install -e ".[dev]"
Usage
The Giphy MCP Server is designed to be run as a standard IO transport process, which AI agents and MCP clients can spawn.
To start the server:
giphy-mcp run
To see the help menu and configuration options:
giphy-mcp help
Configuration
The server requires a Giphy API Key to function. It reads this from the GIPHY_API_KEY environment variable.
You can configure this by:
- Creating a
.envfile in the project root:GIPHY_API_KEY=your_api_key_here - Or by passing it directly via your MCP client's configuration.
Available Tools
search_gifs- Description: Search for GIFs using the Giphy API.
- Parameters:
query(string): The search term to find GIFs for.limit(int, optional): The maximum number of GIFs to return (default: 5).rating(string, optional): Filters results by specified rating (default: 'g').
Example Use Case (Agent Interaction)
When this server is registered with an AI agent (like Claude Desktop or Cursor), the agent can autonomously use it to attach GIFs to its responses.
User: "Can you celebrate that we finally deployed to production?"
Agent (Internal Thought): The user wants to celebrate. A celebratory GIF would be perfect here. I will use the search_gifs tool with the query "celebrate".
Agent (Tool Call):
{
"name": "search_gifs",
"arguments": {
"query": "celebrate",
"limit": 1
}
}
Agent (Response): "Woohoo! That's awesome news! Here's a celebratory GIF to match the mood:
"
Antigravity AI Agent Integration & Skills
This repository includes custom Agent Skills located in the .agents/skills directory designed for the Antigravity AI framework (or other compatible systems).
Included Skills
- Giphy Chat Enhancer: Instructs your AI agent to embed an appropriate GIF during special conversational events (successes, errors, debugging milestones), injecting a fun, nerdy communication style into your interactions.
- Giphy Documentation Enhancer: Instructs the agent to proactively embed tasteful Giphy images when generating or updating
README.mdfiles and user documentation.
Auto-Installation
The skills are written with internal logic that instructs the AI agent to recognize if it lacks the search_gifs tool. If the tool is missing, the agent will autonomously:
- Run
pip install giphy-mcp - Configure itself securely by modifying its
$HOME/.gemini/antigravity/mcp_config.jsonconfiguration file, adding the following snippet:
"mcpServers": {
"giphy": {
"command": "giphy-mcp",
"args": ["run"],
"env": {
"GIPHY_API_KEY": "your_api_key_here"
}
}
}
Using with built-in MCP Clients
To use this with an MCP client like Claude Desktop, add the following to your claude_desktop_config.json:
{
"mcpServers": {
"giphy": {
"command": "giphy-mcp",
"args": ["run"],
"env": {
"GIPHY_API_KEY": "your_api_key_here"
}
}
}
}
Note: You may need to specify the absolute path to the giphy-mcp executable if it's not in your system's PATH.
Установка Giphy Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/Szatek/giphy-mcp-serverFAQ
Giphy Server MCP бесплатный?
Да, Giphy Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Giphy Server?
Нет, Giphy Server работает без API-ключей и переменных окружения.
Giphy Server — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Giphy Server в Claude Desktop, Claude Code или Cursor?
Открой Giphy Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare Giphy Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
