@agenthub-mcp/sdk
v0.1.1
Published
Agent Hub catalog SDK for Node/TypeScript applications
Readme
@agenthub-mcp/sdk
Programmatic catalog access for Agent Hub resources in Node/TypeScript.
Install
npm install @agenthub-mcp/sdkLocal dev (from repo):
cd packages/npm/mcp; npm install; npm run build
cd ../sdk; npm install; npm run buildUsage
import { Catalog } from "@agenthub-mcp/sdk";
const catalog = new Catalog("C:\\path\\to\\.agenthub");
const skill = catalog.getSkill("feasibility-study");
const agents = catalog.listAgents();Set AGENTHUB_CATALOG_PATH or pass the catalog path to the constructor. Bundle selection follows the same rules as @agenthub-mcp/mcp (AGENTHUB_BUNDLE or agenthub-lock.json).
