You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
make build
# or directly:
go build -ldflags "..." -o mcpproxy ./cmd/mcpproxy
./mcpproxy version
# MCPProxy v0.21.0 (personal) darwin/arm64
Build Teams Edition
make build-teams
# or directly:
go build -tags server -ldflags "..." -o mcpproxy-teams ./cmd/mcpproxy
./mcpproxy-teams version
# MCPProxy v0.21.0 (teams) linux/amd64
Build Teams Docker Image
make build-docker
# or directly:
docker build -t mcpproxy-teams:latest .
docker run -p 8080:8080 mcpproxy-teams:latest
Verify Edition
# CLI
./mcpproxy version # shows "personal"
./mcpproxy-teams version # shows "teams"# API
curl http://localhost:8080/api/v1/status | jq .edition
Development
# Run tests (both editions)
go test ./internal/... -v # personal (default)
go test -tags server ./internal/... -v # teams (includes teams tests)# Lint
./scripts/run-linter.sh