glif-mcp-server
by glifxyz·★ 122·Score 46
MCP server enabling AI workflow execution from glif.app within your LLM client.
Overview
The glif-mcp-server connects AI workflows from the glif.app platform to LLM clients via the MCP protocol. It allows users to run image generation, meme creation, and other multimedia AI workflows directly from their AI assistant. The server provides core tools for running workflows and getting information, discovery tools for browsing featured workflows, and optional agent tools. It's built with TypeScript and offers both local installation and npx execution options.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this server if you need to integrate AI image generation or multimedia workflows into your LLM conversations, especially if you're already using glif.app.
When NOT to choose this
Avoid this server if you don't want vendor lock-in to glif.app, or if you need AI workflows beyond what glif supports.
Tools this server exposes
8 tools extracted from the READMErun_workflowRun a workflow with the specified ID and inputs
workflow_infoGet detailed information about a workflow
list_featured_workflowsGet a curated list of featured workflows
search_workflowsSearch for workflows by name or description
my_workflowsGet a list of your workflows
my_user_infoGet detailed information about your account
list_agentsGet a list of agents with optional filtering
load_agentLoad an agent and get its details including personality and workflows
Comparable tools
Installation
Installation
Running via npx (recommended)
- Get your API token from https://glif.app/settings/api-tokens
- Add the server to your Claude Desktop config file (
~/Library/Application Support/Claude/claude_desktop_config.jsonon macOS):
{
"mcpServers": {
"glif": {
"command": "npx",
"args": ["-y", "@glifxyz/glif-mcp-server@latest"],
"env": {
"GLIF_API_TOKEN": "your-token-here"
}
}
}
}Running from local checkout
git clone https://github.com/glifxyz/glif-mcp-server
cd glif-mcp-server
npm install
npm run buildThen configure your MCP client with the path to the built index.js file.
FAQ
- What is glif.app?
- Glif is a platform that allows users to create and run AI workflows for various multimedia tasks like image generation, meme creation, and more.
- How do I get my API token?
- You can get your API token by visiting https://glif.app/settings/api-tokens in your Glif account settings.
Compare glif-mcp-server with
Last updated · Auto-generated from public README + GitHub signals.