claude-self-reflect
Version:
Give Claude perfect memory of all your conversations - Installation wizard for Python MCP server
12 lines (9 loc) • 395 B
JavaScript
// This is the new Docker-based setup wizard
// It runs everything in Docker to avoid Python environment issues
import { fileURLToPath } from 'url';
import { dirname, join } from 'path';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
// Simply forward to the Docker-based wizard
import(join(__dirname, 'setup-wizard-docker.js'));