MCP tools reference
All tools are invoked via JSON-RPC tools/call:
{ "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "<tool_name>", "arguments": { } }}registry_search
Section titled “registry_search”Search the public registry by name, description, tags, category, or agent compatibility.
| Field | Type | Description |
|---|---|---|
| query | string | Search term (optional) |
| limit | number | Max results, default 10, max 20 |
| category | string | Filter by category |
| tag | string | Filter by tag |
| agent | string | cursor, claude, vscode, or mcp |
| sort | string | quality, trending, stars, installs, recent, name |
Example
Section titled “Example”{ "name": "registry_search", "arguments": { "query": "performance", "limit": 5, "sort": "quality" }}registry_get_skill
Section titled “registry_get_skill”Full metadata for a skill including eval uplift, install command, and manifest.
| Field | Type | Required |
|---|---|---|
| org | string | yes — organization slug, e.g. skillist |
| repo | string | yes — skill repo name |
The server also accepts legacy slug as an alias for repo.
Example
Section titled “Example”{ "name": "registry_get_skill", "arguments": { "org": "skillist", "repo": "registry-mcp" }}registry_facets
Section titled “registry_facets”List available filter facets: categories, tags, and compatible agents. No parameters.
{ "name": "registry_facets", "arguments": {}}registry_install_help
Section titled “registry_install_help”Returns CLI install commands, SKILL.md URL, and skill page URL for a skill.
| Field | Type | Required |
|---|---|---|
| org | string | yes |
| repo | string | yes |
Example response fields
Section titled “Example response fields”cliInstall— global CLI setup (npm install -g @skillist/cli)installCommand—skillist install org/reporunCommand— sandbox run hint when applicableskillMdUrl—https://skillist.dev/{org}/{repo}/SKILL.mdregistryUrl—https://skillist.dev/{org}/{repo}
Agent workflow
registry_facets— when the user needs browse filtersregistry_search— find candidatesregistry_get_skill— inspect eval scores and metadataregistry_install_help— return install commands and delivery URLs to the user
Prefer skills with higher eval uplift and quality scores when multiple matches exist.