Adding Your Marketplace to Cursor
This guide walks you through adding your Webrix plugin marketplace to Cursor.
Prerequisites
- A Cursor Teams or Enterprise plan
- Admin access to your Cursor organization dashboard
- Your marketplace repository URL (from Webrix — see Managed Marketplace Sync or GitHub Integration)
Repository structure
Webrix generates the following layout for Cursor:
your-org-slug/
├── .cursor-plugin/
│ └── marketplace.json
├── plugins/
│ └── <plugin-slug>/
│ ├── .cursor-plugin/
│ │ └── plugin.json
│ ├── .mcp.json
│ └── skills/
│ └── <skill-slug>/
│ └── SKILL.md
Step 1: Open the Plugins settings
Go to your Cursor organization Dashboard → Settings → Plugins.
You'll see a Team Marketplaces section below the Plugins list.
Step 2: Import your marketplace
- In the Team Marketplaces section, click + Import Marketplace.
- Paste your GitHub repository URL (e.g.
https://github.com/your-org/my-marketplace) into the Repository field. - Click Continue.
- Cursor will parse your
.cursor-plugin/marketplace.jsonand show the list of plugins found. - Optionally set Team Access distribution groups to control who can see the plugins.
- Set a marketplace name and description, then click Save.
Step 3: Configure plugin distribution
For each plugin in your marketplace, you can set it as:
- Required — Automatically installed for everyone in the assigned distribution group.
- Optional — Available in the marketplace panel, each developer chooses whether to install it.
Step 4: Developers install plugins
Your team members will find the marketplace plugins in the Marketplace panel inside Cursor:
- Open the marketplace panel in Cursor.
- Look for plugins from your team marketplace.
- Install optional plugins directly from the panel.
- Required plugins are installed automatically.
Updating the marketplace
When Webrix syncs changes to your GitHub repository, click Update next to your marketplace in the Plugins settings to pull the latest version. Cursor will sync the updated plugin list.
Testing locally
Before publishing, you can test individual plugins locally by copying them to ~/.cursor/plugins/local/:
ln -s /path/to/marketplace/plugins/my-plugin ~/.cursor/plugins/local/my-plugin
Then restart Cursor or run Developer: Reload Window to load the plugin.