From figma-tools
Use this snippet to register the Figma MCP server in `~/.codex/config.toml` as a streamable HTTP server with bearer auth pulled from your env.
npx claudepluginhub window-ook/claude-code-lab --plugin figma-toolsUse this snippet to register the Figma MCP server in `~/.codex/config.toml` as a streamable HTTP server with bearer auth pulled from your env. ```toml [mcp_servers.figma] url = "https://mcp.figma.com/mcp" bearer_token_env_var = "FIGMA_OAUTH_TOKEN" http_headers = { "X-Figma-Region" = "us-east-1" } ``` - The bearer token must be available as `FIGMA_OAUTH_TOKEN` in the environment that launches Co...Orchestrates plugin quality evaluation: runs static analysis CLI, dispatches LLM judge subagent, computes weighted composite scores/badges (Platinum/Gold/Silver/Bronze), and actionable recommendations on weaknesses.
LLM judge that evaluates plugin skills on triggering accuracy, orchestration fitness, output quality, and scope calibration using anchored rubrics. Restricted to read-only file tools.
Expert UI designer for component creation, responsive layouts, visual design systems, and design-to-code. Delegate for UI components, layouts, mockups, and visual implementations.
Use this snippet to register the Figma MCP server in ~/.codex/config.toml as a streamable HTTP server with bearer auth pulled from your env.
[mcp_servers.figma]
url = "https://mcp.figma.com/mcp"
bearer_token_env_var = "FIGMA_OAUTH_TOKEN"
http_headers = { "X-Figma-Region" = "us-east-1" }
FIGMA_OAUTH_TOKEN in the environment that launches Codex.X-Figma-Region consistently.[features].rmcp_client = true (or experimental_use_rmcp_client = true on older builds) at the top level of config.toml.startup_timeout_sec (default 10) and tool_timeout_sec (default 60) can be set inside [mcp_servers.figma] if needed.export FIGMA_OAUTH_TOKEN="<token>"~/.zshrc or ~/.bashrc), then restart the shell or your IDE.echo $FIGMA_OAUTH_TOKEN should print a non-empty token.~/.codex/config.toml under [mcp_servers.figma], and enable [features].rmcp_client = true (or experimental_use_rmcp_client = true on older releases).FIGMA_OAUTH_TOKEN in the same shell that launches Codex, or add it to your shell profile and restart.rmcp_client is enabled and the bearer token is valid. Tokens copied from Figma should not include surrounding quotes.X-Figma-Region header; if your org uses another region, update the header consistently across config and requests.