|
| 1 | +--- |
| 2 | +title: Enable API Center Plugin Marketplace |
| 3 | +description: Enable a plugin marketplace endpoint (preview) for your Azure API center. Developers can configure it in GitHub Copilot or Claude Code to discover and install plugins from your inventory. |
| 4 | + |
| 5 | +ms.service: azure-api-center |
| 6 | +ms.topic: how-to |
| 7 | +ms.date: 04/15/2026 |
| 8 | + |
| 9 | +ms.custom: |
| 10 | +# Customer intent: As an API program manager, I want to create a plugin marketplace from my API center so AI developers can find and install plugins from my inventory. |
| 11 | +--- |
| 12 | + |
| 13 | +# Enable discovery of API center plugins from a plugin marketplace (preview) |
| 14 | + |
| 15 | + |
| 16 | +This article shows how to enable a plugin marketplace endpoint in [Azure API Center](overview.md). The plugin marketplace endpoint uses the API Center data plane API to catalog the AI plugins such as MCP servers and skills available in the API center inventory. |
| 17 | + |
| 18 | +After you enable the plugin marketplace, developers can add it to their GitHub Copilot CLI or Claude Code development environment to discover and install plugins from your API center. |
| 19 | + |
| 20 | +## Prerequisites |
| 21 | + |
| 22 | +- An API center in your Azure subscription. If you don't have one, see [Quickstart: Create your API center](set-up-api-center.md). |
| 23 | + |
| 24 | +- One or more plugins registered in your API center inventory, such as [MCP servers](register-discover-mcp-server.md) or [skills](register-discover-skills.md). |
| 25 | + |
| 26 | +- The API center portal enabled and set up for your API center. For details, see [Set up and customize your API Center portal](set-up-api-center-portal.md). The access method you choose for the portal determines how developers will authenticate when they access the plugin marketplace. |
| 27 | + |
| 28 | +- [GitHub Copilot CLI](https://github.com/github/copilot-cli) or [Claude Code](https://www.anthropic.com/claude) installed in your development environment. |
| 29 | + |
| 30 | + |
| 31 | +## Confirm plugin marketplace endpoint is enabled for your API center |
| 32 | + |
| 33 | +After setting up the API Center portal, confirm that the plugin marketplace endpoint is enabled for your API center by cloning it locally. |
| 34 | + |
| 35 | +> [!NOTE] |
| 36 | +> After setting up the API center portal, it can take several minutes for the plugin marketplace endpoint to be available. |
| 37 | +
|
| 38 | +The marketplace endpoint is of the following form: |
| 39 | + |
| 40 | +``` |
| 41 | +https://<service name>.data.<region>.azure-apicenter.ms/workspaces/default/plugins/marketplace.git |
| 42 | +``` |
| 43 | + |
| 44 | +To clone it, use a command similar to the following in your terminal, replacing the service name and region with the values from your API center: |
| 45 | + |
| 46 | +```bash |
| 47 | +git clone https://myapicenter.data.eastus.azure-apicenter.ms/workspaces/default/plugins/marketplace.git |
| 48 | +``` |
| 49 | + |
| 50 | +The `marketplace` folder of the cloned repository contains folders for marketplace configuration in Claude Code and GitHub Copilot CLI, and folders for each plugin in your API center inventory. For example: |
| 51 | + |
| 52 | +``` |
| 53 | +marketplace/ |
| 54 | + .claude-plugin/ |
| 55 | + .github/ |
| 56 | + plugins/ |
| 57 | + plugin1/ |
| 58 | + plugin2/ |
| 59 | + ... |
| 60 | +``` |
| 61 | + |
| 62 | +Each plugin folder contains JSON files with the plugin metadata and configuration. |
| 63 | + |
| 64 | +## Add plugin marketplace to GitHub Copilot CLI |
| 65 | + |
| 66 | +Developers can add the plugin marketplace from your API center's marketplace endpoint to GitHub Copilot CLI by using the `plugin marketplace add` command. For example, add it in a GitHub Copilot CLI session with a command similar to the following. Replace the service name and region with the values from your API center: |
| 67 | + |
| 68 | +```bash |
| 69 | +/plugin marketplace add https://myapicenter.data.eastus.azure-apicenter.ms/workspaces/default/plugins/marketplace.git |
| 70 | +``` |
| 71 | + |
| 72 | +Follow the prompts to add the plugin marketplace to your GitHub Copilot CLI. |
| 73 | + |
| 74 | +After adding the marketplace, use the `/plugin marketplace browse` command to see the plugins from your API center inventory. |
| 75 | + |
| 76 | +```bash |
| 77 | +/plugin marketplace browse myapicenter |
| 78 | +``` |
| 79 | + |
| 80 | +Add a plugin from the marketplace to a GitHub Copilot CLI session with the `/plugin install` command. For example: |
| 81 | + |
| 82 | +```bash |
| 83 | +/plugin install plugin-name@myapicenter |
| 84 | +``` |
| 85 | + |
| 86 | +For more information about installing plugins from the marketplace in GitHub Copilot CLI, see [GitHub Copilot CLI documentation](https://docs.github.com/copilot/how-tos/copilot-cli/customize-copilot/plugins-finding-installing). |
| 87 | + |
| 88 | +## Add plugin marketplace to Claude Code |
| 89 | + |
| 90 | +Developers can add the plugin marketplace from their API center's marketplace endpoint by using the `/plugin marketplace add` command. For example, add it in a Claude Code session with a command similar to the following command. Replace the service name and region with the values from your API center: |
| 91 | + |
| 92 | +```bash |
| 93 | +/plugin marketplace add https://myapicenter.data.eastus.azure-apicenter.ms/workspaces/default/plugins/marketplace.git |
| 94 | +``` |
| 95 | + |
| 96 | +Follow the prompts to add the plugin marketplace. |
| 97 | + |
| 98 | +After you add the marketplace, use the `/plugin` command to see the plugins from your API center inventory. |
| 99 | + |
| 100 | +Add a plugin from the marketplace to a Claude Code session with the `/plugin install` command. For example: |
| 101 | + |
| 102 | +```bash |
| 103 | +/plugin install plugin-name@myapicenter |
| 104 | +``` |
| 105 | + |
| 106 | +For more information about installing plugins from the marketplace in Claude Code, see [Claude Code documentation](https://code.claude.com/docs/en/discover-plugins). |
| 107 | + |
| 108 | +## Related content |
| 109 | + |
| 110 | +* [Set up and customize your API Center portal](set-up-api-center-portal.md) |
| 111 | +* [Discover and consume APIs - VS Code extension](discover-apis-vscode-extension.md) |
| 112 | + |
| 113 | + |
0 commit comments