/** * Shared MCP server factory. * Used by both the stdio entry point (index.ts) and the remote Worker entry point (worker.ts). */ import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; import { RewindClient } from './client.js'; export declare function createServer(client: RewindClient): McpServer;