Skip to content

MCP Gateway v3.3.2

Latest

Choose a tag to compare

@github-actions github-actions released this 15 Jul 23:09
a4c5f0e

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.