UNPKG

@gsb-core/mcp-tools

Version:

Shared tools for GSB MCP implementations

19 lines (16 loc) 726 B
/** * GSB MCP Tools Package * =========================== * * This package provides shared tools for GSB MCP implementations. * It exports the entity and entity definition tools for use in both CLI and Wrangler implementations. */ export { gsbEntityTools } from './tools/gsb-entity-tools.js'; export { gsbEntityDefTools } from './tools/gsb-entity-def-tools.js'; export { toolHelper } from './tools/tool-helper.js'; // Default export for CommonJS compatibility export default { gsbEntityTools: (await import('./tools/gsb-entity-tools.js')).gsbEntityTools, gsbEntityDefTools: (await import('./tools/gsb-entity-def-tools.js')).gsbEntityDefTools, toolHelper: (await import('./tools/tool-helper.js')).toolHelper };