|
| 1 | +--- |
| 2 | +title: Docker MCP Catalog |
| 3 | +description: Learn about the benefits of the MCP Catalog, how you can use it, and how you can contribute |
| 4 | +keywords: docker hub, mcp, mcp servers, ai agents, calatog, docker |
| 5 | +--- |
| 6 | + |
| 7 | +The [Docker MCP Catalog](https://hub.docker.com/catalogs/mcp) is a centralized, trusted registry for discovering, sharing, and running MCP-compatible tools. Seamlessly integrated into Docker Hub, it offers verified, versioned, and curated MCP servers packaged as Docker images. |
| 8 | + |
| 9 | +The catalog also solves common MCP server challenges: |
| 10 | + |
| 11 | +- Environment conflicts: Tools often need specific runtimes that may clash with existing setups. |
| 12 | +- Lack of isolation: Traditional setups risk exposing the host system. |
| 13 | +- Setup complexity: Manual installation and configuration result in slow adoption. |
| 14 | +- Inconsistency across platforms: Tools may behave unpredictably on different OSes. |
| 15 | + |
| 16 | +With Docker, each MCP server runs as a self-contained container so it is portable, isolated, and consistent. You can launch tools instantly using Docker CLI or Docker Desktop, without worrying about dependencies or compatibility. |
| 17 | + |
| 18 | +## Key features |
| 19 | + |
| 20 | +- Over 100 verified MCP servers in one place |
| 21 | +- Publisher verification and versioned releases |
| 22 | +- Pull-based distribution using Docker’s infrastructure |
| 23 | +- Tools provided by partners such as New Relic, Stripe, Grafana, and more |
| 24 | + |
| 25 | +## How it works |
| 26 | + |
| 27 | +Each tool in the MCP Catalog is packaged as a Docker image with metadata. Developers can: |
| 28 | + |
| 29 | +- Discover tools via Docker Hub under the mcp/ namespace. |
| 30 | +- Connect tools to their preferred agents with simple configuration through the [MCP Toolkit](toolkit.md) |
| 31 | +- Pull and run tools using Docker Desktop or the CLI. |
| 32 | + |
| 33 | +Each catalog entry provides: |
| 34 | + |
| 35 | +- Tool description and metadata |
| 36 | +- Version history |
| 37 | +- Example configuration for agent integration |
| 38 | + |
| 39 | +## Example: How to use an MCP server from Docker Hub |
| 40 | + |
| 41 | +The following example uses the Puppeteer MCP server to take a screenshot of a website and invert the colors using Claude Desktop. |
| 42 | + |
| 43 | +{{< tabs >}} |
| 44 | +{{< tab name="Using the MCP Toolkit (Recommended)" >}} |
| 45 | + |
| 46 | +1. Make sure you have [installed the Docker Desktop Docker MCP Toolkit extension](toolkit.md). |
| 47 | +2. From the extension, search for the Puppeteer MCP server in the **MCP Servers** tab, and toggle it on to enable. |
| 48 | +3. From the **MCP Clients** tab, select the **Connect** button for Claude Desktop. |
| 49 | +4. Within Claude Desktop, submit the following prompt using the Sonnet 3.5 model: |
| 50 | + |
| 51 | + ```text |
| 52 | + Take a screenshot of docs.docker.com and then invert the colors |
| 53 | + ``` |
| 54 | + |
| 55 | +{{< /tab >}} |
| 56 | +{{< tab name="Manually set it up" >}} |
| 57 | + |
| 58 | +1. Update the `claude_desktop_config.json` file to include the following configuration: |
| 59 | + |
| 60 | + ```json |
| 61 | + { |
| 62 | + "mcpServers": { |
| 63 | + "puppeteer": { |
| 64 | + "command": "docker", |
| 65 | + "args": [ |
| 66 | + "run", |
| 67 | + "-i", |
| 68 | + "--rm", |
| 69 | + "-e", |
| 70 | + "DOCKER_CONTAINER", |
| 71 | + "mcp/puppeteer" |
| 72 | + ], |
| 73 | + "env": { |
| 74 | + "DOCKER_CONTAINER": "true" |
| 75 | + } |
| 76 | + } |
| 77 | + } |
| 78 | + } |
| 79 | + ``` |
| 80 | +2. Restart Claude Desktop to apply the changed config file. |
| 81 | +3. Submit the following prompt using the Sonnet 3.5 model: |
| 82 | + |
| 83 | + ```text |
| 84 | + Take a screenshot of docs.docker.com and then invert the colors |
| 85 | + ``` |
| 86 | + |
| 87 | +Once you've given your consent to use the new tools, Claude spins up the Puppeteer MCP server inside a container, navigates to the target URL, captures and modify the page, and returns the screenshot. |
| 88 | + |
| 89 | +{{< /tab >}} |
| 90 | +{{< /tabs >}} |
| 91 | + |
| 92 | +## Contribute an MCP server to the catalog |
| 93 | + |
| 94 | +If you would like to add you MCP server to the Docker MCP Catalog, fill out the Docker [MCP submission form](https://www.docker.com/products/mcp-catalog-and-toolkit/#get_updates). |
0 commit comments