MCP Catalogs
首页

glif-mcp-server vs everything

并排对比,帮你在这两个 MCP server 之间做选择。

glif-mcp-server
by glifxyz
everything
by modelcontextprotocol
Stars★ 122★ 85,748
30天用量
综合分4677
官方
分类
AI / LLM 工具开发者工具多媒体
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交4 个月前本月

glif-mcp-server · 概述

MCP 服务器,让您可以在 LLM 客户端中执行 glif.app 的 AI 工作流。

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

glif-mcp-server · 使用场景

  • 直接从 LLM 客户端创建和运行 AI 图像生成工作流
  • 使用自定义提示和参数自动生成模因
  • 管理和发现 AI 驱动的创意工具和代理

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

glif-mcp-server · 安装

安装

通过 npx 运行(推荐)

  1. 从 https://glif.app/settings/api-tokens 获取您的 API 令牌
  2. 将服务器添加到您的 Claude Desktop 配置文件(macOS 上为 ~/Library/Application Support/Claude/claude_desktop_config.json):
{
  "mcpServers": {
    "glif": {
      "command": "npx",
      "args": ["-y", "@glifxyz/glif-mcp-server@latest"],
      "env": {
        "GLIF_API_TOKEN": "your-token-here"
      }
    }
  }
}

从本地副本运行

git clone https://github.com/glifxyz/glif-mcp-server
cd glif-mcp-server
npm install
npm run build

然后在您的 MCP 客户端中配置指向构建后的 index.js 文件的路径。

everything · 安装

NPX(推荐)

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

Windows 用户请使用 cmd /c

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

Docker

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

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
对比内容由 README + GitHub 公开数据自动生成,定期更新。