UNPKG

sfcc-dev-mcp

Version:

MCP server for Salesforce B2C Commerce Cloud development assistance including logs, debugging, and development tools

11 lines 1.07 kB
import { GenericToolSpec } from '../core/handlers/base-handler.js'; import { ToolArguments } from '../core/handlers/base-handler.js'; export declare const SYSTEM_OBJECT_TOOL_NAMES: readonly ["get_system_object_definitions", "get_system_object_definition", "search_system_object_attribute_definitions", "search_custom_object_attribute_definitions", "search_site_preferences", "search_system_object_attribute_groups"]; export type SystemObjectToolName = typeof SYSTEM_OBJECT_TOOL_NAMES[number]; export declare const SYSTEM_OBJECT_TOOL_NAMES_SET: Set<"get_system_object_definitions" | "get_system_object_definition" | "search_system_object_attribute_definitions" | "search_site_preferences" | "search_system_object_attribute_groups" | "search_custom_object_attribute_definitions">; /** * Configuration for system object tools * Maps each tool to its validation, execution, and messaging logic */ export declare const SYSTEM_OBJECT_TOOL_CONFIG: Record<SystemObjectToolName, GenericToolSpec<ToolArguments, any>>; //# sourceMappingURL=system-object-tool-config.d.ts.map