UNPKG

claudepoint

Version:

The safest way to experiment with Claude Code. Create instant checkpoints, experiment fearlessly, restore instantly.

13 lines (10 loc) 381 B
#!/usr/bin/env node /** * Test script to verify MCP server functionality */ console.log('Testing ClaudePoint MCP server...'); console.log('isStdio check:', !process.stdin.isTTY && !process.stdout.isTTY); console.log('stdin.isTTY:', process.stdin.isTTY); console.log('stdout.isTTY:', process.stdout.isTTY); // Force run as MCP server for testing require('./src/mcp-server.js');