UNPKG

@build000r/mcp-mcp

Version:

Fast CLI tool to scan, view, park (JIT), and interactively manage MCP server configurations across all Claude projects

10 lines (7 loc) 202 B
#!/usr/bin/env node const MCPManager = require('./MCPManager'); if (require.main === module) { const manager = new MCPManager(); manager.run().catch(console.error); } module.exports = MCPManager;