MCP Catalogs
Home

glif-mcp-server vs everything

Side-by-side comparison to help you pick between these two MCP servers.

glif-mcp-server
by glifxyz
everything
by modelcontextprotocol
Stars★ 122★ 85,748
30d uses
Score4677
Official
Categories
AI / LLM ToolsDeveloper ToolsMedia
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit4 mo agothis month

glif-mcp-server · Summary

MCP server enabling AI workflow execution from glif.app within your LLM client.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

glif-mcp-server · Use cases

  • Creating and running AI image generation workflows directly from your LLM client
  • Automating meme generation with custom prompts and parameters
  • Managing and discovering AI-powered creative tools and agents

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

glif-mcp-server · Install

Installation

Running via npx (recommended)

  1. Get your API token from https://glif.app/settings/api-tokens
  2. Add the server to your Claude Desktop config file (~/Library/Application Support/Claude/claude_desktop_config.json on 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 build

Then configure your MCP client with the path to the built index.js file.

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.