Switch to simplified Twilio MCP integration using @yiyang.1i/sms-mcp-server

- Replace API Key/Secret auth with Account SID/Auth Token
- Configure MCP during Docker build instead of runtime
- Remove mcp-config.json and config directory
- Simplify startup script by removing MCP configuration logic
- Update documentation and test scripts for new auth method

The MCP server is now configured directly in the Dockerfile using
'claude mcp add-json' command, making the setup more reliable and
eliminating runtime configuration complexity.
This commit is contained in:
Vishal Jain
2025-06-17 21:48:00 +01:00
parent 6cb57c9dc6
commit d9bf0f4b53
8 changed files with 63 additions and 60 deletions

View File

@@ -24,8 +24,7 @@ echo
# Collect Twilio credentials
read -p "Enter your Twilio Account SID: " TWILIO_ACCOUNT_SID
read -p "Enter your Twilio API Key: " TWILIO_API_KEY
read -sp "Enter your Twilio API Secret: " TWILIO_API_SECRET
read -sp "Enter your Twilio Auth Token: " TWILIO_AUTH_TOKEN
echo
read -p "Enter your Twilio phone number (with country code, e.g., +1234567890): " TWILIO_FROM_NUMBER
read -p "Enter the phone number to receive SMS (with country code): " TWILIO_TO_NUMBER
@@ -34,8 +33,7 @@ read -p "Enter the phone number to receive SMS (with country code): " TWILIO_TO_
cat > "$ENV_FILE" << EOF
# Twilio credentials for Claude Docker
TWILIO_ACCOUNT_SID=$TWILIO_ACCOUNT_SID
TWILIO_API_KEY=$TWILIO_API_KEY
TWILIO_API_SECRET=$TWILIO_API_SECRET
TWILIO_AUTH_TOKEN=$TWILIO_AUTH_TOKEN
TWILIO_FROM_NUMBER=$TWILIO_FROM_NUMBER
TWILIO_TO_NUMBER=$TWILIO_TO_NUMBER
EOF

View File

@@ -1,29 +1,24 @@
#!/bin/bash
# ABOUTME: Startup script for Claude Code container with MCP server
# ABOUTME: Configures environment and starts Claude Code with Twilio MCP integration
# ABOUTME: Loads environment and starts Claude Code with pre-configured Twilio MCP
# Load environment variables from .env if it exists
# Use the .env file baked into the image at build time
if [ -f /app/.env ]; then
echo "Loading credentials from baked-in .env file"
echo "Loading environment from baked-in .env file"
set -a
source /app/.env 2>/dev/null || true
set +a
# Export Twilio variables for MCP server
# Export Twilio variables for runtime use
export TWILIO_ACCOUNT_SID
export TWILIO_API_KEY
export TWILIO_API_SECRET
export TWILIO_AUTH_TOKEN
export TWILIO_FROM_NUMBER
export TWILIO_TO_NUMBER
else
echo "WARNING: No .env file found in image. Twilio features will be unavailable."
echo "To enable Twilio: create .env in claude-docker directory before building the image."
echo "WARNING: No .env file found in image."
fi
# Configure Claude Code to use the MCP server
export CLAUDE_MCP_CONFIG=/app/config/mcp-config.json
# Check for existing authentication
if [ -f "$HOME/.claude/.credentials.json" ]; then
echo "Found existing Claude authentication"
@@ -33,14 +28,14 @@ else
fi
# Verify Twilio MCP configuration
if [ -n "$TWILIO_ACCOUNT_SID" ] && [ -n "$TWILIO_API_KEY" ] && [ -n "$TWILIO_API_SECRET" ]; then
echo "Twilio MCP pre-configured with:"
if [ -n "$TWILIO_ACCOUNT_SID" ] && [ -n "$TWILIO_AUTH_TOKEN" ]; then
echo "Twilio MCP server configured with:"
echo " - Account SID: ${TWILIO_ACCOUNT_SID:0:10}..."
echo " - From Number: $TWILIO_FROM_NUMBER"
echo " - To Number: $TWILIO_TO_NUMBER"
echo " - MCP Config: $CLAUDE_MCP_CONFIG"
echo " - SMS capability ready via: twilio__send_text"
else
echo "No Twilio credentials found, MCP features will be unavailable"
echo "No Twilio credentials found"
fi
# Start Claude Code with permissions bypass