- Rename local-proxy to mcplocal with HTTP server, LLM pipeline, mcpd discovery - Add LLM pre-processing: token estimation, filter cache, metrics, Gemini CLI + DeepSeek providers - Add mcpd auth (login/logout) and MCP proxy endpoints - Update CLI: dual URLs (mcplocalUrl/mcpdUrl), auth commands, --direct flag - Add tiered health monitoring, shell completions, e2e integration tests - 57 test files, 597 tests passing Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
31 lines
725 B
Bash
Executable File
31 lines
725 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
PROJECT_ROOT="$(dirname "$SCRIPT_DIR")"
|
|
cd "$PROJECT_ROOT"
|
|
|
|
# Load .env if present
|
|
if [ -f .env ]; then
|
|
set -a; source .env; set +a
|
|
fi
|
|
|
|
# Ensure tools are on PATH
|
|
export PATH="$HOME/.npm-global/bin:$HOME/.bun/bin:$HOME/.local/bin:$PATH"
|
|
|
|
echo "==> Building TypeScript..."
|
|
pnpm build
|
|
|
|
echo "==> Bundling standalone binary..."
|
|
mkdir -p dist
|
|
rm -f dist/mcpctl dist/mcpctl-*.rpm
|
|
bun build src/cli/src/index.ts --compile --outfile dist/mcpctl
|
|
|
|
echo "==> Packaging RPM..."
|
|
nfpm pkg --packager rpm --target dist/
|
|
|
|
RPM_FILE=$(ls dist/mcpctl-*.rpm 2>/dev/null | head -1)
|
|
echo "==> Built: $RPM_FILE"
|
|
echo " Size: $(du -h "$RPM_FILE" | cut -f1)"
|
|
rpm -qpi "$RPM_FILE"
|