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.
@useskillhub/sdkMCP clients, direct REST calls, and SDK or CLI workflows all resolve back to the same governed SkillHub registry.
{
"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"}}'import { SkillHub } from "@useskillhub/sdk";
const skillhub = new SkillHub({
baseUrl: "https://api.useskillhub.com"
});
const skills = await skillhub.search({
query: "research with citations",
permissionLevel: "medium"
});SkillHub is the control plane between agent intent and skill execution. Agents can move fast without losing ownership, review, or cost controls.