Skip to content

MCP Gateway v3.3.0

Choose a tag to compare

@github-actions github-actions released this 11 Jul 23:50
9a0d10f

⚠️ License change in 3.3.0

Starting with this release, mcp-gateway uses per-file licensing. The repository default is PolyForm Noncommercial 1.0.0; a small set of files marked SPDX-License-Identifier: MIT remain MIT. Commercial use of the noncommercial-licensed code requires a commercial license — see COMMERCIAL.md.

Versions 3.0.0–3.2.1 were published under MIT. That grant is irrevocable for those exact artifacts and is not withdrawn. Those versions are now deprecated (npm) and yanked (crates.io) so new installs resolve to 3.3.0; they remain available AS IS. Full model: LICENSES.md and NOTICE.md.


Installation

Cargo (Recommended)

cargo install mcp-gateway

Manual Download

Download the appropriate binary for your platform from the assets below.

Supported platforms:

  • mcp-gateway-darwin-arm64 - macOS Apple Silicon (M1/M2/M3)
  • mcp-gateway-darwin-x86_64 - macOS Intel
  • mcp-gateway-linux-x86_64 - Linux x86_64 (static musl)
  • mcp-gateway-linux-aarch64 - Linux ARM64 (static musl)
  • mcp-gateway-windows-x86_64.exe - Windows x86_64 (MSVC)

Verify checksums

sha256sum -c SHA256SUMS.txt

Quick Start

# Create config file
cat > servers.yaml << 'EOF'
server:
  port: 39400
meta_mcp:
  enabled: true
backends: {}
EOF

# Start gateway
mcp-gateway --config servers.yaml

See README for full documentation.