MCP Catalogs
Home

claude-talk-to-figma-mcp vs everything

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

claude-talk-to-figma-mcp
by arinspunk
everything
by modelcontextprotocol
Stars★ 593★ 85,748
30d uses
Score5377
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

claude-talk-to-figma-mcp · Summary

An MCP server that enables AI agents to interact with Figma designs through reading, analysis, and modification capabilities.

everything · Summary

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

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

  • Automating accessibility audits by detecting contrast issues in designs
  • Performing bulk style updates across entire design documents
  • Generating React/Vue/SwiftUI components directly from Figma designs

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

claude-talk-to-figma-mcp · Install

Installation

  1. Install and start the WebSocket:

``bash npx claude-talk-to-figma-mcp ``

  1. Install the plugin in Figma:

- Open Figma Desktop - Go to Menu → Plugins → Development → Import plugin from manifest - Select src/claude_mcp_plugin/manifest.json

  1. Configure your Agentic Tool:

**Claude Desktop**: Download and double-click claude-talk-to-figma-mcp.dxt **Cursor**: Add to mcp.json: ``json { "mcpServers": { "ClaudeTalkToFigma": { "command": "npx", "args": ["-p", "claude-talk-to-figma-mcp@latest", "claude-talk-to-figma-mcp-server"] } } } ``

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.