FigmaExporterMcp
A local bridge that lets MCP clients inspect, export, and modify Figma files through a development Figma plugin.
README
FigmaExporterMcp
FigmaExporterMcp is a local bridge that lets Codex and other MCP clients inspect, export, and modify Figma files through a development Figma plugin.
Architecture
Codex / MCP client <--stdio--> MCP Server <--WebSocket :3066--> Figma Plugin
^
|
other Codex sessions proxy by HTTP
The first MCP server process owns the embedded relay on port 3066. Additional Codex sessions start normally, detect the occupied port, and proxy commands to the relay owner. This allows multiple Codex sessions to share one Figma plugin connection without port conflicts.
Local Paths
- Repository:
D:\LongWorkspace\FigmaExporterMcp - MCP entry:
dist/server.js - Server source:
src/server.ts - Plugin manifest:
figma-plugin/manifest.json - Plugin code:
figma-plugin/code.js - Plugin UI:
figma-plugin/ui.html
Install and Build
cd D:\LongWorkspace\FigmaExporterMcp
npm install
npm run build
Codex Global MCP Config
Add this to C:\Users\chenlong\.codex\config.toml and restart Codex:
[mcp_servers.figma_exporter_mcp]
command = 'node'
args = ['D:\LongWorkspace\FigmaExporterMcp\dist\server.js']
startup_timeout_sec = 120
[mcp_servers.figma_exporter_mcp.env]
FIGMA_EXPORTER_RELAY_PORT = '3066'
FIGMA_EXPORTER_EXPORT_DIR = 'D:\LongWorkspace\FigmaExporterMcp\exports'
Install the Figma Plugin
- Open Figma.
- Go to Plugins -> Development -> Import plugin from manifest.
- Select
D:\LongWorkspace\FigmaExporterMcp\figma-plugin\manifest.json. - Run the plugin in the Figma file you want Codex to access.
- The plugin auto-connects to
ws://localhost:3066.
Multi-Session Usage
- Use
get_connected_filesto list connected Figma files. - Use
set_active_filewith a file name or channel keyword before mutating a design. - Active file selection is scoped per Codex session, so sessions do not overwrite each other's active target.
- If a session logs
Proxy mode, it is forwarding commands to the process that owns port3066; this is expected.
Development Notes
- Modify
src/server.tsfor MCP tools, relay endpoints, proxy mode, and session routing. - Modify
figma-plugin/code.jsfor Figma Plugin API command implementations. - Modify
figma-plugin/ui.htmlfor connection UI, reconnect behavior, and WebSocket messaging. - Run
npm run buildafter server changes and commit the regenerateddist/files. - Keep
node_modules/,exports/, logs, andcopilot_temp/out of git.
Environment Variables
| Variable | Default | Description |
|---|---|---|
FIGMA_EXPORTER_RELAY_PORT |
3066 |
WebSocket/HTTP relay port |
FIGMA_EXPORTER_EXPORT_DIR |
D:\LongWorkspace\FigmaExporterMcp\exports in Codex config |
Local image export directory |
FIGMA_EXPORTER_SESSION_ID |
auto-generated per MCP process | Optional stable session id for active-file routing |
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.