#!/bin/bash
# Set the MCP config path to the remote configuration
CONFIG_PATH="/Users/lallen30/.codeium/windsurf/mcp_config_remote.json"
echo "Testing remote MCP server (BluestoneApps Development Standards - Remote)..."
echo "Using config file: $CONFIG_PATH"
echo ""
echo "This script will copy the remote MCP configuration to the default location"
echo "and then open a new Windsurf window."
echo ""
echo "In the Windsurf window, you can test the remote MCP server with prompts like:"
echo "- 'What are the project structure standards for React Native?'"
echo "- 'Show me an example of a React Native Button component'"
echo "- 'What are the API communication standards?'"
echo ""
echo "Press Enter to continue..."
read
# Copy the remote config to the default location
cp "$CONFIG_PATH" "/Users/lallen30/.codeium/windsurf/mcp_config.json"
# Launch Windsurf
open -a Windsurf