UNPKG

maplestory-mcp-server

Version:

Official-style NEXON MapleStory MCP Server for Claude Desktop - Complete character info, union details, guild data, rankings, and game mechanics

32 lines 677 B
#!/usr/bin/env node /** * MCP Maple CLI Entry Point * NPX executable for running the MapleStory API MCP server */ declare class CliApp { private logger; private server; constructor(); /** * Parse and validate CLI arguments */ private parseArguments; /** * Validate and resolve configuration */ private resolveConfig; /** * Initialize and start the MCP server */ private startServer; /** * Setup graceful shutdown handling */ private setupShutdownHandlers; /** * Main application entry point */ run(): Promise<void>; } export { CliApp }; //# sourceMappingURL=index.d.ts.map