MCP Catalogs
首页

cursor-talk-to-figma-mcp vs everything

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

cursor-talk-to-figma-mcp
by grab
everything
by modelcontextprotocol
Stars★ 6,761★ 85,748
30天用量
综合分5977
官方
分类
开发者工具AI / LLM 工具效率工具
开发者工具AI / LLM 工具其它
实现语言JavaScriptTypeScript
最近提交1 个月前本月

cursor-talk-to-figma-mcp · 概述

连接 AI 代理和 Figma 的 MCP 服务器,实现设计自动化

everything · 概述

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

cursor-talk-to-figma-mcp · 使用场景

  • 批量替换 Figma 设计中的文本内容
  • 将原型反应转换为 FigJam 中的连接线
  • 在多个目标间应用组件实例覆盖

everything · 使用场景

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

cursor-talk-to-figma-mcp · 安装

安装

  1. 如果还没有安装 Bun,请先安装:
curl -fsSL https://bun.sh/install | bash
  1. 运行安装脚本,这将在你的 Cursor 项目中安装 MCP
bun setup
  1. 启动 WebSocket 服务器
bun socket
  1. 从 [Figma 社区页面](https://www.figma.com/community/plugin/1485687494525374295/cursor-talk-to-figma-mcp-plugin) 安装 Figma 插件

Claude Desktop 配置

将服务器添加到 Claude MCP 配置文件 ~/.config/claude/config.json

{
  "mcpServers": {
    "TalkToFigma": {
      "command": "bunx",
      "args": ["cursor-talk-to-figma-mcp@latest"]
    }
  }
}

Cursor 配置

将服务器添加到 Cursor MCP 配置文件 ~/.cursor/mcp.json

{
  "mcpServers": {
    "TalkToFigma": {
      "command": "bunx",
      "args": ["cursor-talk-to-figma-mcp@latest"]
    }
  }
}

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 公开数据自动生成,定期更新。