figmanage 1.3.5 → 1.3.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +8 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,8 +1,12 @@
1
1
  # figmanage
2
2
 
3
- Figma workspace management from the command line. 85 CLI commands and MCP tools for seats, teams, permissions, billing, onboarding, and org admin. Also works as an MCP server for AI assistants.
3
+ The Figma workspace layer that agents can manage. Seats, teams, permissions, billing, offboarding -- from the terminal, Claude Code, Cursor, or OpenClaw. Runs locally.
4
4
 
5
- ## install
5
+ [![npm](https://img.shields.io/npm/v/figmanage)](https://www.npmjs.com/package/figmanage)
6
+ [![downloads](https://img.shields.io/npm/dm/figmanage)](https://www.npmjs.com/package/figmanage)
7
+ [![tests](https://img.shields.io/badge/tests-209%20passing-brightgreen)](https://github.com/dannykeane/figmanage)
8
+ [![license](https://img.shields.io/badge/license-MIT-blue)](LICENSE)
9
+ [![MCP](https://img.shields.io/badge/MCP-marketplace-violet)](https://mcp-marketplace.io/server/io-github-dannykeane-figmanage)
6
10
 
7
11
  ```bash
8
12
  npm install -g figmanage
@@ -45,13 +49,13 @@ Run `figmanage <group> --help` for available subcommands. All commands output JS
45
49
 
46
50
  ## AI integration (MCP)
47
51
 
48
- figmanage runs as an MCP server for Claude, ChatGPT, Cursor, and other AI assistants:
52
+ figmanage runs as an MCP server for Claude Code, Cursor, OpenClaw, and other AI assistants. Runs locally via stdio.
49
53
 
50
54
  ```bash
51
55
  # Claude Code
52
56
  claude mcp add figmanage -- npx -y figmanage
53
57
 
54
- # Claude Desktop / Cursor / other clients
58
+ # Cursor / OpenClaw / other MCP clients
55
59
  # Add to your MCP config:
56
60
  {
57
61
  "mcpServers": {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "figmanage",
3
3
  "mcpName": "io.github.dannykeane/figmanage",
4
- "version": "1.3.5",
4
+ "version": "1.3.7",
5
5
  "description": "MCP server for managing your Figma workspace from the terminal.",
6
6
  "type": "module",
7
7
  "main": "dist/index.js",