/** * SCAPI toolset for B2C Commerce. * * This toolset provides MCP tools for Salesforce Commerce API (SCAPI) discovery and exploration. * Includes standard SCAPI schemas, custom API status, and custom API scaffold tools. * * @module tools/scapi */ import type { McpTool } from '../../utils/index.js'; import type { Services } from '../../services.js'; /** * Creates all tools for the SCAPI toolset. * * @param loadServices - Function that loads configuration and returns Services instance * @returns Array of MCP tools */ export declare function createScapiTools(loadServices: () => Promise | Services): McpTool[];