Overview
This page covers the Skills MCP tools for direct MCP integration.
Related references: Skill Library, MCP Tools, and Versioning.
publish_skill
Publishes a skill bundle.
Arguments
| name | type | required | description |
|---|---|---|---|
| files | array of objects { path: string; content: string } | yes | Bundle files to publish. |
Notable behavior
- Creates a new immutable version.
search_skills
Searches the organization’s skills library.
Arguments
| name | type | required | description |
|---|---|---|---|
| query | string | no | Case-insensitive substring filter on skill names and descriptions. |
| tags | string[] | no | Tag filter. |
Notable behavior
- Filters by
queryand AND-matchestags.
get_skill
Returns a skill bundle.
Arguments
| name | type | required | description |
|---|---|---|---|
| slug | string | yes | Skill slug. |
| version | positive integer | no | Specific skill version. |
Notable behavior
- Returns the latest version when
versionis omitted. - Returns the requested version when
versionis provided.
install_skill
Returns the host agent’s native install commands for an external marketplace skill.
Arguments
| name | type | required | description |
|---|---|---|---|
| marketplace | string | yes | Marketplace id. |
| agent | claude-code | codex | yes | Host agent. |
| slug | string | no | Skill slug. |
| plugin | string | no | Plugin name. |
Cursor uses the separate local plugin or admin import path described in the installation documentation, not this tool’s native install commands.
Notable behavior
- Returns the host agent’s native subscribe or install commands for
claude-codeorcodexfrom a marketplace. - The caller must provide either
slugorplugin. - Returns commands only; it does not return skill files.
list_marketplaces
Lists the organization’s external skill marketplace subscriptions.
Arguments
| name | type | required | description |
|---|---|---|---|
| None | — | no | This tool takes no arguments. |
Notable behavior
- Lists the organization’s external skill marketplace subscriptions.
list_skill_versions
Lists published versions for a skill.
Arguments
| name | type | required | description |
|---|---|---|---|
| slug | string | yes | Skill slug. |
Notable behavior
- Lists published versions newest first.