Join our Discord Server

Docker MCP Gateway Cheatsheet

← All cheatsheets
AiIntermediate

Docker MCP Gateway Cheatsheet

Run a single MCP endpoint that fronts many containerized MCP servers for any client.


What it is

The Docker MCP Gateway aggregates multiple MCP servers behind a single endpoint, so any MCP-compatible AI client (Claude, Cursor, etc.) connects once and accesses all your tools.

Installation

Available in Docker Desktop 4.40+. Start the gateway with docker mcp gateway start.

Quick start

docker mcp gateway start

Start the MCP gateway on the default port (8811).

docker mcp gateway status

Check gateway status and connected servers.

docker mcp gateway stop

Stop the MCP gateway.

Common commands

TaskCommandDescription
Start gatewaydocker mcp gateway startLaunch the aggregating MCP proxy.
Stop gatewaydocker mcp gateway stopShut down the gateway.
Statusdocker mcp gateway statusShow gateway health and registered servers.
Logsdocker mcp gateway logsStream gateway logs.
List toolsdocker mcp gateway toolsList all tools exposed by connected servers.

Real-world examples

Start gateway and connect Claude Desktop
docker mcp gateway start
# Configure Claude Desktop to use:
# http://localhost:8811/mcp
Check what tools are available
docker mcp gateway tools

Best practices

  • Use the gateway in team setups so all members share one config endpoint.
  • Keep the gateway running as a background service for always-on AI tool access.

Related cheatsheets


Last reviewed: 2026-06-15
Join our Discord Server