Install Kong Skills
Install
/plugin marketplace add kong/ai-marketplace
/plugin install ai-marketplace@kong-konnect
/reload-pluginsWhat gets installed
- The
kong-konnectplugin package fromplugins/kong-konnect/ - The shared skills from
plugins/kong-konnect/skills/ - The
kong-konnectMCP server entry
Claude Code uses the plugin manifest in
plugins/kong-konnect/.claude-plugin/plugin.json
and the marketplace catalog in
.claude-plugin/marketplace.json.
Install components instead of the full plugin
Install all skills:
npx skills add kong/ai-marketplaceInstall only one skill:
npx skills add kong/ai-marketplace --skill gateway-plugin-datakitThat does not require KONNECT_TOKEN.
If you installed via gh skill, you can also update one installed skill with
gh skill update gateway-plugin-datakit.
Auto-update
Prefer Claude Code’s marketplace auto-update support over a custom shell hook.
In Claude Code:
- Run
/plugin. - Open the
Marketplacestab. - Select the
ai-marketplacemarketplace. - Enable or disable auto-update there.
If plugins were updated during a session, run /reload-plugins.
Be careful with auto-update. It can pull newer skill instructions automatically, which may introduce supply-chain or security risk if content changes upstream without review.
If you want the MCP server without the full plugin wrapper, add
kong-konnect manually using
plugins/kong-konnect/mcp.json as the
reference shape. That is when KONNECT_TOKEN is required.
Local plugin install
For local verification, install the plugin package from Kong AI Marketplace under Cursor’s local plugin directory:
- Create
~/.cursor/plugins/local/kong-konnect/. - Copy the contents of
plugins/kong-konnect/into that path so Cursor sees.cursor-plugin/plugin.jsonat the plugin root. - Restart Cursor or run
Developer: Reload Window. - Confirm
kong-konnectappears under installed plugins.
Use a real copied directory for local testing. A symlinked local plugin directory does not load reliably, while a copied directory does.
Once Kong AI Marketplace is listed in a Cursor marketplace, the same package
shape can also be installed through Cursor’s plugin UI or /add-plugin. The
local path above remains the contributor smoke-test flow.
What gets installed
- The
kong-konnectplugin package fromplugins/kong-konnect/ - The shared skills from
plugins/kong-konnect/skills/ - The
kong-konnectMCP server entry fromplugins/kong-konnect/mcp.json
Cursor uses the plugin manifest in
plugins/kong-konnect/.cursor-plugin/plugin.json
and the marketplace catalog in
.cursor-plugin/marketplace.json.
Skills without the plugin wrapper
Install all skills:
npx skills add kong/ai-marketplaceInstall only one skill:
npx skills add kong/ai-marketplace --skill gateway-plugin-datakitThat does not require KONNECT_TOKEN.
If you installed via gh skill, you can also update one installed skill with
gh skill update gateway-plugin-datakit.
MCP Notes
KONNECT_TOKEN is only required when Cursor loads or uses the
kong-konnect MCP server. If you only want the shared skills, use the
skill-only install path instead.
If you want the MCP server without the full plugin wrapper, use
plugins/kong-konnect/mcp.json as the
checked-in reference shape.
Kong AI Marketplace provides Kiro Powers for AWS.
Install
- Browse powers at https://kiro.dev/powers.
- Select a power and click Install.
- Kiro IDE opens and lets you confirm installation.
From GitHub
- Open the Powers panel and choose Add power from GitHub.
- Enter the following repository URL: https://github.com/kong/ai-marketplace
- Click Install.
Notes
- If a power includes MCP integrations, Kiro registers them in
~/.kiro/settings/mcp.jsonunder the Powers section. -
To install from GitHub:
gh skill install kong/ai-marketplaceCopied!Install one skill:
gh skill install kong/ai-marketplace gateway-plugin-datakitCopied!
For tools without a first-class plugin or extension wrapper in Kong AI Marketplace, use the shared skills plus the MCP config.
Skills
npx skills and gh skill are both supported install paths for the shared
skills in Kong AI Marketplace.
npx skills
Install all skills:
npx skills add kong/ai-marketplaceInstall a single skill:
npx skills add kong/ai-marketplace --skill gateway-plugin-datakitUpdate all globally installed skills:
npx skills update -g -yUpdate one installed skill:
npx skills update -g -y gateway-plugin-datakit--skill applies to npx skills add. The update command takes skill names
positionally.
gh skill
gh skill is available in GitHub CLI v2.90.0+ and is currently in public
preview.
Preview a skill before installing it:
gh skill preview kong/ai-marketplace gateway-plugin-datakitgh skill install kong/ai-marketplaceTo install a single skill directly, use:
gh skill install kong/ai-marketplace gateway-plugin-datakitIf gh skill does not pick the right host automatically, pass --agent.
Pin an install to a reviewed tag or SHA when you need reproducibility:
gh skill install kong/ai-marketplace gateway-plugin-datakit --pin v1.0.0Update all installed skills:
gh skill update --allUpdate one installed skill:
gh skill update gateway-plugin-datakitThese skill-only installs do not require KONNECT_TOKEN.
To validate GitHub-side publishability without publishing:
gh skill publish --dry-runAuto-update caution
Be careful with any automatic update path. It can pull newer skill instructions without review, which may introduce supply-chain or security risk if content changes upstream.
If you use auto-update, prefer updating one known skill first:
npx skills update -g -y gateway-plugin-datakitOr with GitHub CLI:
gh skill update gateway-plugin-datakitClaude Code has a native plugin update flow. See its install page for the current recommended approach.
MCP config reference
Use plugins/kong-konnect/mcp.json as
the checked-in reference shape for the kong-konnect MCP server.
KONNECT_TOKEN is only required if you add and use the MCP server.