Planner-friendly discovery
Expose skill search as an agent tool so planners can find reusable capabilities before writing custom steps.
SkillHub gives agents a predictable path from discovery to validation to execution, whether the runtime is HTTP, MCP, or local.
Expose skill search as an agent tool so planners can find reusable capabilities before writing custom steps.
Let the gateway route to HTTP services, MCP servers, and local commands through one registry contract.
Give agents the risk profile of a skill before they decide whether to call it.
A project-scoped key lets an agent list installed tools, invoke approved skills, and keep every call tied to policy, budget, subscription, invocation logs, and ledger-ready usage.
Expose project-approved SkillHub skills as MCP tools for agent workbenches and assistants.
POST /mcpCall a pinned skill directly from server workflows, schedulers, and custom agent loops.
POST /v1/runtime/invokeKeep discovery, install, and invocation automation in the same source-controlled workflow.
SDK previewMCP clients and direct REST calls resolve back to the same governed SkillHub registry. CLI and SDK packages are preview until public package releases exist.
{
"mcpServers": {
"skillhub": {
"url": "https://api.useskillhub.com/mcp",
"headers": {
"Authorization": "Bearer ${SKILLHUB_PROJECT_API_KEY}"
}
}
}
}curl -X POST "https://api.useskillhub.com/v1/runtime/invoke" \
-H "Authorization: Bearer $SKILLHUB_PROJECT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"skillSlug":"browser-research","input":{"query":"market map with citations"}}'SDK preview
The TypeScript SDK exists in the monorepo but is not published as a public package yet.
Use the public REST API for discovery and inspection:
curl "https://api.useskillhub.com/v1/skills/search?limit=50"SkillHub is the control plane between agent intent and skill execution. Agents can move fast without losing ownership, review, or cost controls.