Skip to content
Open app

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": { }
}
}

Search the public registry by name, description, tags, category, or agent compatibility.

FieldTypeDescription
querystringSearch term (optional)
limitnumberMax results, default 10, max 20
categorystringFilter by category
tagstringFilter by tag
agentstringcursor, claude, vscode, or mcp
sortstringquality, trending, stars, installs, recent, name
{
"name": "registry_search",
"arguments": {
"query": "performance",
"limit": 5,
"sort": "quality"
}
}

Full metadata for a skill including eval uplift, install command, and manifest.

FieldTypeRequired
orgstringyes — organization slug, e.g. skillist
repostringyes — skill repo name

The server also accepts legacy slug as an alias for repo.

{
"name": "registry_get_skill",
"arguments": {
"org": "skillist",
"repo": "registry-mcp"
}
}

List available filter facets: categories, tags, and compatible agents. No parameters.

{
"name": "registry_facets",
"arguments": {}
}

Returns CLI install commands, SKILL.md URL, and skill page URL for a skill.

FieldTypeRequired
orgstringyes
repostringyes
  • cliInstall — global CLI setup (npm install -g @skillist/cli)
  • installCommandskillist install org/repo
  • runCommand — sandbox run hint when applicable
  • skillMdUrlhttps://skillist.dev/{org}/{repo}/SKILL.md
  • registryUrlhttps://skillist.dev/{org}/{repo}

Agent workflow

  1. registry_facets — when the user needs browse filters
  2. registry_search — find candidates
  3. registry_get_skill — inspect eval scores and metadata
  4. registry_install_help — return install commands and delivery URLs to the user

Prefer skills with higher eval uplift and quality scores when multiple matches exist.