/** * Transfer MCP Tools * * Only the PII scanner remains. A larger set of pattern-sharing tools * that used to live here was deleted along with the ~4,600-line subtree they * wrapped: they were unreachable three ways over — gated out of the default * MCP surface, exposed on a CLI path the dispatcher cannot reach (four levels * deep; the dispatcher handles three), and pointed at a registry whose * bootstrap config carried a placeholder public key rather than a real one. * * `transfer_detect-pii` is unrelated to all of that — it is a real regex PII * scanner over `src/transfer/anonymization/`, which has no dependency on the * deleted subtree, and it stays visible by default. * * @module @monomind/cli/mcp-tools/transfer-tools * @version 4.0.0 */ import type { MCPTool } from './types.js'; /** Ungated — internal/test use only. MCP clients get `transferTools` below. */ export declare const allTransferTools: MCPTool[]; export declare const transferTools: MCPTool[]; export default transferTools; //# sourceMappingURL=transfer-tools.d.ts.map