UNPKG

mushcode-mcp-server

Version:

A specialized Model Context Protocol server for MUSHCODE development assistance. Provides AI-powered code generation, validation, optimization, and examples for MUD development.

18 lines 622 B
/** * format_mushcode tool implementation * Formats MUSHCODE for improved readability and consistency */ import { Tool } from '@modelcontextprotocol/sdk/types.js'; import { MushcodeKnowledgeBase } from '../knowledge/base.js'; interface FormatToolResult { formatted_code: string; changes_made: string[]; style_notes: string; } export declare const formatMushcodeTool: Tool; /** * Tool handler for format_mushcode */ export declare function formatMushcodeHandler(args: Record<string, unknown>, knowledgeBase: MushcodeKnowledgeBase): Promise<FormatToolResult>; export {}; //# sourceMappingURL=format.d.ts.map