UNPKG

reloaderoo

Version:

Hot-reload your MCP servers without restarting your AI coding assistant. Works excellently with VSCode MCP, well with Claude Code. A transparent development proxy for the Model Context Protocol that enables seamless server restarts during development.

20 lines 596 B
#!/usr/bin/env node /** * reloaderoo CLI entry point * * A transparent MCP development wrapper that enables hot-reloading of MCP servers * without losing client session state. Acts as a proxy between MCP clients and servers. * * Usage: * reloaderoo [options] -- <command> [args...] * reloaderoo info * * Example: * reloaderoo -- node /path/to/my-mcp-server.js * reloaderoo --log-level debug -- python server.py --port 8080 */ /** * Main CLI function - exported for use by index.ts */ export declare function runCLI(): Promise<void>; //# sourceMappingURL=reloaderoo.d.ts.map