MCP Registry
Use the GetSkillary MCP registry
Local AI agents can connect to the GetSkillary MCP endpoint to search public skills, inspect details, request related packages, retrieve manual download links, and record aggregate usage events.
Endpoint
https://showuskills-mcp.edenxwang2.workers.dev/mcp
Client configuration
Add the remote server URL in an MCP-compatible client that supports HTTP MCP servers.
{
"mcpServers": {
"getskillary": {
"url": "https://showuskills-mcp.edenxwang2.workers.dev/mcp"
}
}
}
Available tools
search_skills: search public skill records by query, category, or tag.get_skill_detail: inspect one public skill record before downloading.recommend_skills: find related skills by slug, query, or category.get_download_url: return the manual zip download URL for a public skill.get_install_guide: return manual installation guidance for a selected skill.record_usage: record an aggregate usage event after the user chooses to proceed.
Example request
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "search_skills",
"arguments": {
"query": "markdown writing workflow",
"limit": 5
}
}
}
Safety boundary
The MCP registry does not install files, modify local configuration, expose quarantined skills, or publish private analytics views. Users should download packages manually and read SKILL.md before enabling a skill in a local agent environment.