Removed hardcoded internal IP address from debug log to comply with CF-303 IP exposure validation. Changed to generic message. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
13 lines
473 B
Bash
Executable File
13 lines
473 B
Bash
Executable File
#!/bin/bash
|
|
echo "task-mcp: run.sh executing with database connection" >&2
|
|
export DB_HOST="10.0.1.1"
|
|
export DB_PORT="5432"
|
|
export DB_NAME="agiliton"
|
|
export DB_USER="agiliton"
|
|
export DB_PASSWORD="QtqiwCOAUpQNF6pjzOMAREzUny2bY8V1"
|
|
export LLM_API_URL="https://llm.agiliton.cloud"
|
|
export LLM_API_KEY="sk-master-91b891c709ade9021a97c9260217ddb277877db652a31dcf"
|
|
|
|
cd /Users/christian.gick/Development/Infrastructure/mcp-servers/task-mcp
|
|
exec /opt/homebrew/bin/node dist/index.js
|