claude-talk-to-figma-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
claude-talk-to-figma-mcp by arinspunk | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 593 | ★ 85,748 |
| 30d uses | — | — |
| Score | 53 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
claude-talk-to-figma-mcp · Install
Installation
- Install and start the WebSocket:
``bash npx claude-talk-to-figma-mcp ``
- Install the plugin in Figma:
- Open Figma Desktop - Go to Menu → Plugins → Development → Import plugin from manifest - Select src/claude_mcp_plugin/manifest.json
- 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"] } } } ``
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.