/** * Workspace-scoped GTM resources that share an identical CRUD(+revert) shape: * - clients (server containers) * - transformations (server containers) * - zones (web containers — zone delegation) * - templates (custom templates / gallery-installed templates) * - gtag_config (Google tag / gtag configuration; no revert) * * These resources have rich, deeply-nested bodies (parameters, consent * settings, template data, etc.). Rather than model every field in Zod, the * create/update tools accept the full resource as a JSON string (`bodyJson`), * mirroring the existing workspace_resolve_conflict pattern. List/get/delete * use the same guardrails and pagination as the rest of the server. */ import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; import type { GtmClient } from '../utils/gtmClient.js'; export declare function registerServerSideTools(server: McpServer, getClient: () => GtmClient): void; //# sourceMappingURL=serverSide.d.ts.map