S
Share:
About
Converts Claude-style skills into MCP tools for cross-client reuse.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about SkillHub.
- What is SkillHub and what does it do?
- SkillHub converts Claude-style skills into standardized Model Context Protocol (MCP) tools. This enables Claude skills to be reused across various MCP-compatible clients and applications, enhancing their interoperability and deployment flexibility.
- How can I integrate SkillHub with an MCP client like Cline?
- SkillHub uses the stdio transport, which means it can be run as a local process. For Cline, you would configure it to launch the SkillHub server as a subprocess, piping client requests and server responses via standard input/output streams.
- Does SkillHub require an API key or other credentials?
- No, SkillHub does not require API keys, OAuth, or any other authentication credentials to operate. It is designed for direct integration and local execution, leveraging its stdio transport.
- What kind of tools or capabilities does SkillHub provide?
- SkillHub primarily provides conversion capabilities, transforming Claude-style skills into a format usable by MCP clients. The specific tools exposed will depend on the Claude skills that are processed and converted by the SkillHub server.
- Are there any known limitations or prerequisites for using SkillHub?
- A key prerequisite for SkillHub is the availability of Claude-style skills for conversion. Its utility is directly tied to the existence and structure of these skills, as it acts as an adapter for them.
Install SkillHub
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"skillhub": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-skillhub"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"skillhub": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-skillhub"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"skillhub": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-skillhub"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.