#!/bin/bash
# Set the MCP config path to the local configuration
CONFIG_PATH="/Users/lallen30/.codeium/windsurf/mcp_config_local.json"
echo "Testing local MCP server (BluestoneApps Development Standards)..."
echo "Using config file: $CONFIG_PATH"
echo ""
echo "This script will copy the local MCP configuration to the default location"
echo "and then open a new Windsurf window."
echo ""
echo "In the Windsurf window, you can test the local 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 local config to the default location
cp "$CONFIG_PATH" "/Users/lallen30/.codeium/windsurf/mcp_config.json"
# Launch Windsurf
open -a Windsurf