
Connects Claude to glif.app's AI workflow platform through their API. You can run workflows with custom inputs, search and browse featured workflows, pull metadata about specific workflows and runs, and optionally load pre-built agents with their personality configs. Setup requires a glif.app API token, and you can pre-load specific workflow IDs as tools if you have workflows you use frequently. Discovery tools are enabled by default but can be disabled if you just want to run known workflows. Useful when you're already using glif for workflow orchestration and want Claude to trigger or inspect those pipelines directly.
Glif is a media-generation agent: generate images, video, and audio, transcribe, render HTML, search the web, run code, and chain multi-step media operations — from any MCP client.
https://glif.app/api/mcp (Streamable HTTP, JSON-RPC 2.0)This repo holds the registry metadata for the hosted server (see server.json); the server itself is part of the glif.app platform and is not open source.
[!NOTE] Looking for the old locally-run stdio server (npm
@glifxyz/glif-mcp-server)? It's deprecated — the code is parked on thelegacy-local-serverbranch.
compose_project does the work — describe what you want in plain language, including a whole series of variations, and Glif picks the models and chains the steps. It returns a job_id immediately; poll get_job_status for the media, which comes back as resource_link blocks pointing at CDN URLs. The rest are read and upload helpers. Call tools/list for the authoritative set, or see https://glif.app/mcp.
Generation spends credits from the signed-in Glif account; read-only tools are free. See https://glif.app/pricing.
Settings → Connectors → Add custom connector, paste:
https://glif.app/api/mcp
claude mcp add --scope user --transport http glif "https://glif.app/api/mcp"
Or add to .cursor/mcp.json:
{ "mcpServers": { "glif": { "url": "https://glif.app/api/mcp" } } }
code --add-mcp '{"name":"glif","type":"http","url":"https://glif.app/api/mcp"}'
Enable developer mode, then Settings → Apps & Connectors → Add new connector, paste https://glif.app/api/mcp, pick OAuth.
codex mcp add glif --url "https://glif.app/api/mcp"
codex mcp login glif
{ "mcpServers": { "glif": { "url": "https://glif.app/api/mcp", "transport": "http" } } }
Your client opens a browser OAuth sign-in on first connect — approve it to link your Glif account. More clients (Replit, Hermes, OpenClaw, LM Studio, …) with copy-paste snippets: https://glif.app/mcp
MIT - see LICENSE