@nanocollective/nanocoder
Version:
A local-first CLI coding agent that brings the power of agentic coding tools like Claude Code and Gemini CLI to local models or controlled APIs like OpenRouter
15 lines • 661 B
JavaScript
import { Text } from 'ink';
import React from 'react';
// Note: The /setup-mcp command is handled via app-util.ts which calls
// onEnterMcpWizardMode() directly, not through this command handler.
// This export exists for command registration only.
export const setupMcpCommand = {
name: 'setup-mcp',
description: 'Launch interactive MCP server configuration wizard',
handler: () => {
// This handler is never called - the command is intercepted in app-util.ts
// and handled via the mode system (onEnterMcpWizardMode)
return Promise.resolve(React.createElement(Text, {}, ''));
},
};
//# sourceMappingURL=setup-mcp.js.map