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

GitHub Stars

25

User Rating

Not Rated

Favorites

0

Views

34

Forks

4

Issues

2

Installation
Difficulty
Advanced
Estimated Time
20-45 minutes

Installation

If you have nodejs installed, you can run our [@glifxyz/glif-mcp-server](https://www.npmjs.com/package/@glifxyz/glif-mcp-server) package via npx:
1Get your API token from https://glif.app/settings/api-tokens
2Add the server in your Claude Desktop config file. On macOS this is: ~/Library/Application Support/Claude/claude_desktop_config.json
json
   {
     "mcpServers": {
       "glif": {
         "command": "npx",
         "args": ["-y", "@glifxyz/glif-mcp-server@latest"],
         "env": {
           "GLIF_API_TOKEN": "your-token-here"
         }
       }
     }
   }
   
First, checkout this code and install dependencies. ```sh git clone https://github.com/glifxyz/glif-mcp-server cd glif-mcp-server