figma-console-mcp-manifest
v1.0.2
Published
Print the absolute path to figma-console-mcp's Desktop Bridge manifest.json
Maintainers
Readme
figma-console-mcp-manifest
Print the absolute path to figma-console-mcp's Desktop Bridge manifest.json.
This is a standalone utility — it does not install or run the MCP server. For setup instructions, see the official figma-console-mcp README.
Why?
When setting up the Figma Desktop Bridge plugin, you need to import manifest.json from the figma-console-mcp package. But finding where npx cached the package can be tricky. This tool finds it for you.
Usage
npx figma-console-mcp-manifest@latestThe path is printed to stdout, so you can capture it:
MANIFEST=$(npx figma-console-mcp-manifest@latest)Then in Figma Desktop: Plugins > Development > Import plugin from manifest... and select that path.
How it works
The CLI tries three resolution strategies in order:
- Local resolution — uses
createRequireto findfigma-console-mcpin localnode_modules. - npx cache — scans
~/.npm/_npxfor cached installations. - Global npm root — checks the global
node_modulesdirectory.
All errors go to stderr so stdout is always clean for scripting.
Requirements
- Node.js >= 18
figma-console-mcpinstalled (via npx, global, or local)
License
MIT
