import { type Result, type RootsListChangedNotification } from '@frontmcp/protocol'; import { type McpHandler, type McpHandlerOptions } from './mcp-handlers.types'; /** * Handler for `notifications/roots/list_changed` notification from the client. * * Per MCP 2025-11-25 spec, this notification is sent by clients that support * roots to indicate that the list of roots has changed. When received, the * server should invalidate any cached roots and optionally re-fetch them. */ export default function rootsListChangedNotificationHandler({ scope, }: McpHandlerOptions): McpHandler; //# sourceMappingURL=roots-list-changed-notification.handler.d.ts.map