MCP Catalogs
Home

cursor-talk-to-figma-mcp vs everything

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

cursor-talk-to-figma-mcp
by grab
everything
by modelcontextprotocol
Stars★ 6,761★ 85,748
30d uses
Score5977
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last commit1 mo agothis month

cursor-talk-to-figma-mcp · Summary

MCP server connecting AI agents like Cursor and Claude Code with Figma for design automation.

everything · Summary

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

cursor-talk-to-figma-mcp · Use cases

  • Automating bulk text content replacement in Figma designs
  • Converting prototype reactions to connector lines in FigJam
  • Applying component instance overrides across multiple targets

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

cursor-talk-to-figma-mcp · Install

Installation

  1. Install Bun if you haven't already:
curl -fsSL https://bun.sh/install | bash
  1. Run setup, this will also install MCP in your Cursor's active project
bun setup
  1. Start the WebSocket server
bun socket
  1. Install Figma plugin from [Figma community page](https://www.figma.com/community/plugin/1485687494525374295/cursor-talk-to-figma-mcp-plugin)

Claude Desktop Configuration

Add the server to your Claude MCP configuration in ~/.config/claude/config.json:

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

Cursor Configuration

Add the server to your Cursor MCP configuration in ~/.cursor/mcp.json:

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

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.