
GIF Creator MCP
Converts video files to GIF animations with customizable settings like FPS, dimensions, and duration.
README
GIF Creator MCP
An MCP (Model Context Protocol) server that converts video files to GIF animations.
Features
- Convert any video file to GIF format
- Customize output settings (FPS, dimensions, duration)
- Extract specific portions of videos
- High-quality GIF generation with optimized palette
Installation
npm install
npm run build
Usage
Right now, Claude Desktop does not support video input. I'd recommend using a different client like Goose and adding it as an extension.
In Goose, you can use the Gif Creator tool by going to Advanced Settings > Extension > + Add Custom Extension > and in the command pasting:
node /path/to/gif-creator-mcp/dist/index.js
I'd also increase the time out to 1000.
For other MCP clients, you can use the following command to start the server:
{
"mcpServers": {
"gif-creator": {
"command": "node",
"args": ["/path/to/gif-creator-mcp/dist/index.js"]
}
}
}
Tools
convert_video_to_gif
Converts a video file to a GIF file, saving it in the same directory as the source video.
Parameters:
video_path
(required): Path to the video file to convertfps
(optional): Frames per second for the GIF (1-30, default: 10)width
(optional): Width of the output GIF (maintains aspect ratio if height not specified)height
(optional): Height of the output GIF (maintains aspect ratio if width not specified)start_time
(optional): Start time in seconds (default: 0)duration
(optional): Duration in seconds (default: entire video)
Examples
Basic conversion
{
"video_path": "/path/to/video.mp4"
}
Custom settings
{
"video_path": "/path/to/video.mp4",
"fps": 15,
"width": 480,
"start_time": 5,
"duration": 10
}
Extract a specific portion
{
"video_path": "/path/to/long-video.mov",
"start_time": 30,
"duration": 5,
"fps": 20
}
Requirements
- Node.js
- FFmpeg (automatically installed via @ffmpeg-installer/ffmpeg)
Notes
- The output GIF is saved in the same directory as the input video
- The filename is the same as the video file but with a .gif extension
- Large videos may take some time to process
- The tool uses optimized palette generation for better quality GIFs
License
MIT
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.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.