├── .gitignore ├── DRAGME.md ├── Dockerfile ├── LICENSE ├── bun.lock ├── package.json ├── readme.md ├── scripts └── setup.sh ├── smithery.yaml ├── src ├── cursor_mcp_plugin │ ├── code.js │ ├── manifest.json │ ├── setcharacters.js │ └── ui.html ├── socket.ts └── talk_to_figma_mcp │ ├── bun.lock │ ├── package.json │ ├── server.ts │ └── tsconfig.json ├── tsconfig.json └── tsup.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grab/cursor-talk-to-figma-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /DRAGME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grab/cursor-talk-to-figma-mcp/HEAD/DRAGME.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grab/cursor-talk-to-figma-mcp/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grab/cursor-talk-to-figma-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grab/cursor-talk-to-figma-mcp/HEAD/bun.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grab/cursor-talk-to-figma-mcp/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grab/cursor-talk-to-figma-mcp/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grab/cursor-talk-to-figma-mcp/HEAD/scripts/setup.sh -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grab/cursor-talk-to-figma-mcp/HEAD/smithery.yaml -------------------------------------------------------------------------------- /src/cursor_mcp_plugin/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grab/cursor-talk-to-figma-mcp/HEAD/src/cursor_mcp_plugin/code.js -------------------------------------------------------------------------------- /src/cursor_mcp_plugin/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grab/cursor-talk-to-figma-mcp/HEAD/src/cursor_mcp_plugin/manifest.json -------------------------------------------------------------------------------- /src/cursor_mcp_plugin/setcharacters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grab/cursor-talk-to-figma-mcp/HEAD/src/cursor_mcp_plugin/setcharacters.js -------------------------------------------------------------------------------- /src/cursor_mcp_plugin/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grab/cursor-talk-to-figma-mcp/HEAD/src/cursor_mcp_plugin/ui.html -------------------------------------------------------------------------------- /src/socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grab/cursor-talk-to-figma-mcp/HEAD/src/socket.ts -------------------------------------------------------------------------------- /src/talk_to_figma_mcp/bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grab/cursor-talk-to-figma-mcp/HEAD/src/talk_to_figma_mcp/bun.lock -------------------------------------------------------------------------------- /src/talk_to_figma_mcp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grab/cursor-talk-to-figma-mcp/HEAD/src/talk_to_figma_mcp/package.json -------------------------------------------------------------------------------- /src/talk_to_figma_mcp/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grab/cursor-talk-to-figma-mcp/HEAD/src/talk_to_figma_mcp/server.ts -------------------------------------------------------------------------------- /src/talk_to_figma_mcp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grab/cursor-talk-to-figma-mcp/HEAD/src/talk_to_figma_mcp/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grab/cursor-talk-to-figma-mcp/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grab/cursor-talk-to-figma-mcp/HEAD/tsup.config.ts --------------------------------------------------------------------------------