Cursor 2.6: Team Marketplaces for Plugins

New in Cursor! · Full changelog · Main announcement

Admins on Teams and Enterprise plans can now create team marketplaces to share private plugins internally!

How it works:

Team marketplaces let you import a GitHub repository of plugins and distribute them to your team. Go to Dashboard → Settings → Plugins, click Import under Team Marketplaces, paste a GitHub repo URL, and review the parsed plugins. Admins can also set Team Access groups to control who sees what, then name and save the marketplace.

Teams plans support up to 1 team marketplace, and Enterprise plans support unlimited marketplaces! You can try it out with the cursor-team-marketplace-template repo!

We’d love your feedback!

  • How are you planning to use team marketplaces for your organization?
  • What governance or access control features would be most valuable?
  • Are there other plugin distribution workflows you’d like to see supported?

If you’ve found a bug, please post it in Bug Reports instead, so we can track and address it properly, but also feel free to drop a link to it in this thread for visibility.

1 Like

Are team marketplaces only supporting GitHub public repos? If I have a GitHub entperprise internal repo can I use it for my internal plugin source if it requires authentication?

Awesome to hear about Team Marketplaces coming along! Is Github the only platform supported right now? Any support for Gitlab or generally other Git managed repos?

1 Like

Right now, only GitHub is supported. GitLab is not supported yet.

1 Like

Is there a plan for Team Marketplace to support plugins from other repos in github like Claude? I’m currently looking at consolidating marketplace definitions for Cursor and Claude to the same repo.

Example:
.cursor_plugin/marketplace.json:

{ "name": "jSwoord marketplace",
 "plugins": [
    {
        "name": "exmaple-plugin-1",
        "description": "This is an example plugin",
        "version": "1.0.0",
        "source": "./plugins/example-plugin-1"
    },
    {
        "name": "example-plugin-2",
        "description": "This is another example plugin",
        "version": "1.0.0",
        "source": {
            "type": "github",
            "owner": "jswoord",
            "repo": "example-plugin-2",
        }
    }
    ]
 }

`example-plugin-2` does not index currently, even if Cursor has access to that repo from the github integration

1 Like

Hi, thanks for the 1st step to closing the gap for marketplaces!
Could you please let us know whether support for non-public GitLab repositories (as a marketplace) is planned? If so, is there an approximate timeline you can share?

Hi team, how do we publish updates to the plugin? The team marketplace allowed us all to install a skill via the plugin but now we can’t update it. Tried uninstalling and reinstalling from the marketplace after pushing an update to the skill in the git repo. Do we need to do something on the admin dashboard to release a new version?