glif-mcp-server
Easily run glif.app AI workflows inside your LLM: image generators, memes, selfies, and more. Glif supports all major multimedia AI models inside one app
Overview
Glif-MCP is a server designed to run AI workflows from glif.app, enabling users to execute various multimedia AI models such as image generators, memes, and selfies within a single application.
To use Glif-MCP, clone the repository, install the necessary dependencies, and configure your MCP client (e.g., Claude Desktop) with your API token to load the server.
- Run glifs with specified inputs. - Retrieve detailed information about glifs, runs, and users. - Access glif metadata through URI-based resources.
- Running AI-generated image workflows.
- Creating and sharing memes using AI.
- Generating personalized selfies with AI enhancements.
Add to your AI client
Use these steps to connect glif-mcp-server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"glif-mcp-server-glifxyz": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-glif-mcp-server-glifxyz"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"glif-mcp-server-glifxyz": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-glif-mcp-server-glifxyz"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"glif-mcp-server-glifxyz": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-glif-mcp-server-glifxyz"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"glif-mcp-server-glifxyz": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-glif-mcp-server-glifxyz"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"glif-mcp-server-glifxyz": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-glif-mcp-server-glifxyz"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"glif-mcp-server-glifxyz": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-glif-mcp-server-glifxyz"
]
}
}
}FAQ
What is required to run Glif-MCP?
You need Node.js installed and an API token from glif.app.
Are there usage limits?
Yes, usage is subject to the same limits as user accounts, and additional credits can be purchased.
Is Glif-MCP open source?
Yes, Glif-MCP is licensed under the MIT License.