A collection of plugins for Claude (Desktop/CoWork/Code) that bundle MCP server integrations with custom skills.
| Plugin | Description |
|---|---|
| lucid | Connect to Lucid (Lucidchart & Lucidspark) for creating and managing diagrams |
These plugins work with both Claude CoWork and Claude Code (CLI).
Step 1. Open the Customize panel, select Connectors, then click Browse plugins.
Step 2. Switch to the Personal tab, click the + button, and select Add marketplace from GitHub.
Step 3. Enter Rosetree-Solutions/claude-plugins and click Sync.
Step 4. The Lucid plugin appears in the marketplace. Click Install.
To refresh available plugins after new versions are published, click the ... menu next to the marketplace name and select Check for updates.
-
Add the marketplace:
/plugin marketplace add Rosetree-Solutions/claude-plugins -
Install a plugin:
/plugin install lucid@rosetree-lucid-plugin
The first time you use a plugin's MCP tools, you'll be prompted to connect your account (e.g., sign in to Lucid). Once authenticated, the plugin's skills are available automatically — ask Claude to "create a flowchart" or "find my Lucid diagrams" and the appropriate skill will activate.
.claude-plugin/
└── marketplace.json # Marketplace catalog (registers plugins for distribution)
plugins/
└── <plugin-name>/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest (name, description, version, author)
├── .mcp.json # MCP server configuration
├── .claude/
│ └── settings.local.json # Permission allowlists for MCP tools
└── skills/
└── <skill-name>/
└── SKILL.md # Skill definition with instructions for Claude
- marketplace.json — Lives at the repo root in
.claude-plugin/. Registers all plugins in this repository for distribution via/plugin marketplace add. - plugin.json — Identifies an individual plugin and provides metadata (name, description, version, keywords).
- .mcp.json — Registers MCP servers (HTTP or stdio) that the plugin connects to.
- settings.local.json — Whitelists specific MCP tools and restricts external access (e.g., domain-scoped
WebFetch). - SKILL.md — Defines a skill with YAML front matter (
name,description) and markdown instructions that guide Claude through a workflow using the plugin's MCP tools.
- Create a directory:
plugins/<your-plugin-name>/ - Add a
.claude-plugin/plugin.jsonwith at minimum:{ "name": "your-plugin-name", "description": "What this plugin does", "version": "1.0.0", "author": { "name": "Your Name" } } - Add
.mcp.jsonif your plugin uses an MCP server. - Add skills under
skills/<skill-name>/SKILL.mdfor guided workflows. - Add
.claude/settings.local.jsonto configure tool permissions. - Add your plugin to the root
.claude-plugin/marketplace.jsonso it's discoverable. - Update the Available Plugins table in this README.




