skillhub-mcp
Allows Hermes agents to search, install, and manage skills from the skillhub marketplace via MCP tool calls.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@skillhub-mcpsearch for pdf conversion skills"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
skillhub
Trusted skill marketplace for AI agents. One manifest, many runtimes.
A skill is a small tool that an AI agent (Hermes, Claude Code, Codex, Cursor)
can call as a black box. skillhub is the place where:
maintainers publish skills once, in a universal
skill.yaml,agents and humans discover them via
skillhub search,they install into the right runtime with
skillhub install <name> <runtime>.
No domain. No accounts. No money involved — yet. Just the protocol, the CLI, and a registry of 20 seed skills.
Status
v0.0.1 — local CLI, no network, no payments. The goal of v0.0.1 is to prove the manifest format and the discoverability workflow before we add infrastructure.
Related MCP server: aiskillstore
What's here
File | What it is |
Universal skill manifest, v0.1 | |
| CLI: |
| MCP server exposing the same 4 tools to agents |
| Trust Score v0.2 (real GitHub signals) |
| Static security scanner |
| 254 curated skills (incl. |
| Cached trust scores (TTL 6h) |
| Idempotent importer from public registries |
| Tag enrichment via token frequency |
|
|
Install (local)
Requires uv (a fast Python package manager).
On macOS: brew install uv. The CLI is then globally available as skillhub.
git clone https://github.com/djmarat/skillhub
cd skillhub
uv tool install -e . # installs skillhub + skillhub-mcp
skillhub search "pdf" # try itTo re-install after pulling new code:
cd skillhub
uv tool install -e . --forceUsage
# Search the local registry
skillhub search "search" # human table
skillhub search "pdf" --json # agent-friendly, one JSON per line
# Show one skill in detail
skillhub show pdf-md
# Install into a runtime
skillhub install pdf-md --runtime hermes
# or
skillhub install pdf-md -r claude-code
# Validate your own skill.yaml
skillhub validate ./my-skill/skill.yamlAs an MCP server (skillhub-mcp)
For AI agents that speak MCP (Claude Code, Hermes, Codex, Cursor), skillhub ships
its own marketplace as a server. Connect once, then search/show/install/validate
skills as tool calls — no copy-paste, no scraping.
{
"mcpServers": {
"skillhub": {
"command": "skillhub-mcp"
}
}
}If you don't have uv tool installed globally, fall back to the dev form:
{
"mcpServers": {
"skillhub": {
"command": "python",
"args": ["-m", "skillhub_mcp.server"],
"cwd": "/path/to/skillhub"
}
}
}The server exposes 15 tools — full agent lifecycle:
Tool | When the agent uses it |
| "I need a tool that does X" |
| "Tell me more about this one" |
| "What's the community success rate? Latency?" |
| "Try a dry-run install first, don't touch my runtime" |
| "Make it real" |
| "Refresh me on the latest version" |
| "I don't need this anymore" |
| "Is this skill.yaml well-formed and safe to ship?" |
| "Did this skill work? Tell others" |
| "What else usually goes with the stuff I have?" |
| "What have I already installed/rated in this account?" |
| "List curated bundles (AI Researcher, PDF, …)" |
| "Show one bundle details" |
| "Install an entire bundle" |
| "What bundle fits my installed skills?" |
The retention loop is built in: every install writes to a local profile;
every successful run is recorded as a rate; the next stats call surfaces
those signals back. So agents get more confident about skills over time —
not less.
See src/skillhub_mcp/server.py for the full schema.
Maintainers write
skill.yamlonce; the CLI compiles to runtime layouts.Agents find skills via
skillhub search --jsoninstead of web scraping.Humans get a
trust_scoreper skill — derived from real signals, not stars.Everyone agrees on the same
skill.yamlschema, so we don't fork five copies of the same SKILL.md across runtimes.
Roadmap (no dates)
v0.1: schema stable, security scanner v1, real registry updater.
v0.2: trust score from
install_success_rate(live telemetry).v0.3: in-agent MCP-server (
skillhub-mcp) so any MCP-capable agent can discover/install skills via tool calls.v1.0: featured/verified tiers, paid placements, the actual marketplace.
License
MIT. See headers in source files.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
AlicenseAqualityFmaintenanceMCP server for discovering and installing AI agent skills from agentskill.sh. Search skills across platforms, browse trending skills, and install them with built-in security scanning.Last updated4103MIT- AlicenseAqualityDmaintenanceAgent-first skill marketplace MCP server. AI agents discover, install, and share skills across 7 platforms via MCP protocol. 15 tools including skill search, download, upload, and agent discovery.Last updated183MIT
- AlicenseAqualityCmaintenanceThis MCP server enables AI agents to search, discover, and install skills from the SkillsMP marketplace, with support for keyword and semantic search, skill content retrieval, and installation to various coding agents.Last updated59813MIT
- Alicense-qualityBmaintenanceAn MCP server that enables AI agents to interact with the SkillShare registry, including searching, reading, creating, and managing resources like skills, MCP configurations, and notes.Last updatedMIT
Related MCP Connectors
A registry of 5,900+ peer-authored skills any MCP agent can search and load on demand.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for AI dialogue using various LLM models via AceDataCloud
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/djmarat/skillhub'
If you have feedback or need assistance with the MCP directory API, please join our Discord server