#!/usr/bin/env node /** * storytellingjs MCP Server * * Model Context Protocol server for storytelling tools. * Parity with Python storytelling_mcp/server.py */ import { Server } from '@modelcontextprotocol/sdk/server/index.js'; import type { ToolHandler } from '../types.js'; import { SessionManager } from '../session-manager.js'; declare const toolHandlers: Map; declare const sessionManager: SessionManager; /** * Create and configure the storytelling MCP server. */ export declare function createStorytellingServer(): Server; export { toolHandlers, sessionManager }; //# sourceMappingURL=server.d.ts.map