From b4f512dfc605c709462969aef0dc9f5be7b80d7f Mon Sep 17 00:00:00 2001 From: sheltongraves <148902861+sheltongraves@users.noreply.github.com> Date: Tue, 24 Jun 2025 21:48:17 -0400 Subject: [PATCH 01/12] Create hub-mcp Adding documentation for the Hub MCP server we will release on July 9th. --- .../ai/mcp-catalog-and-toolkit/hub-mcp | 145 ++++++++++++++++++ 1 file changed, 145 insertions(+) create mode 100644 content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp diff --git a/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp b/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp new file mode 100644 index 000000000000..ca29f29dfc4b --- /dev/null +++ b/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp @@ -0,0 +1,145 @@ +--- +title: Hub MCP +description: Use the MCP Toolkit to set up MCP servers and MCP clients. +keywords: Docker Hub MCP Server, Hub MCP server, Hub MCP +--- + +The Docker Hub MCP Server is a Model Context Protocol (MCP) server that interfaces with Docker Hub APIs to make rich image metadata accessible to LLMs, enabling intelligent content discovery and repository management. Developers building with containers, especially in AI and LLM-powered workflows, often face inadequate context across the vast landscape of Docker Hub images. As a result, LLMs struggle to recommend the right images, and developers lose time manually searching instead of building. + +## Key features + +- Advanced LLM Context: Our MCP Server provides LLMs with detailed, structured context for Docker Hub images, enabling smarter, more relevant recommendations for developers, whether they're choosing a base image or automating CI/CD workflows. +- Natural Language Image Discovery: Developers can find the right container image using natural language, no need to remember tags or repository names. Just describe what you need, and Docker Hub will return images that match your intent. +- Simplified Repository Management: Hub MCP Server enables agents to manage repositories through natural language fetching image details, viewing stats, searching content, and performing key operations quickly and easily. + +## Install Docker Hub MCP server + +1. From the **MCP Toolkit** menu, select the **Catalog** tab and search for **Docker Hub** and select the plus icon to add the Docker Hub MCP server. +2. In the server's Configuration tab, insert your Docker Hub username and personal access token (PAT). +3. In the Clients tab in MCP Toolkit, ensure Gordon is connected. +4. From the **Ask Gordon** menu, you can now send requests related to your + Docker Hub account, in accordance to the tools provided by the Docker Hub MCP server. To test it, ask Gordon: + + ```text + What repositories are in my namespace? + ``` + +> [!TIP] +> By default, the Gordon [client](#install-an-mcp-client) is enabled, +> which means Gordon can automatically interact with your MCP servers. + +## Usage examples + +This section provides task-oriented examples for common operations with Docker Hub +tools. + + +### Finding images + +```console +# Search for official images +$ docker ai "Search for official nginx images on Docker Hub" + +# Search for lightweight images to reduce deployment size and improve performance +$ docker ai "Search for minimal Node.js images with small footprint" + +# Get the most recent tag of a base image +$ docker ai "Show me the latest tag details for go" + +# Find a production-ready database with enterprise features and reliability +$ docker ai "Search for production ready database images" + +# Compare Ubuntu versions to choose the right one for my project +$ docker ai "Help me find the right Ubuntu version for my project" +``` + + +### Repository Management + +```console +# Create a repository +$ docker ai "Create a repository in my namespace" + +# List all repositories in my namespace +$ docker ai "List all repositories in my namespace" + +# Find the largest repository in my namespace +$ docker ai "Which of my repositories takes up the most space?" + +# Find repositories that haven't been updated recently +$ docker ai "Which of my repositories haven't had any pushes in the last 60 days?" + +# Find which repositories are currently active and being used +$ docker ai "Show me my most recently updated repositories" + +# Get details about a repository +$ docker ai "Show me information about my '' repository" +``` + +### Pull/Push Images +```console +# Pull latest PostgreSQL version +$ docker ai "Pull the latest postgres image" + +# Push image to your Docker Hub repository +$ docker ai "Push my to my repository" +``` + +### Tag Management + +```console +# List all tags for a repository +$ $ docker ai "Show me all tags for my '' repository" + +# Find the most recently pushed tag +$ docker ai "What's the most recent tag pushed to my '' repository?" + +# List tags with architecture filtering +$ docker ai "List tags for in the '' repository that support amd64 architecture" + +# Get detailed information about a specific tag +$ docker ai "Show me details about the '' tag in the '' repository" + +# Check if a specific tag exists +$ docker ai "Check if version 'v1.2.0' exists for my 'my-web-app' repository" +``` + +### Docker Hardened Images + +```console +# List available hardened images +$ docker ai "What is the most secure image I can use to run a node.js application?" + +# Convert Dockerfile to use a hardened image +$ docker ai "Can you help me update my Dockerfile to use a docker hardened image instead of the current one" +``` +> [!NOTE] +> To access Docker Hardened Images, a subscription is required. If you're interested in using Docker Hardened Images, please visit: + [Docker Hardened Images](https://www.docker.com/products/hardened-images/) + + +## Reference + +This section provides a comprehensive listing of the tools you can find +in the Docker Hub MCP Server. + +### Docker Hub MCP Server tools + +Tools to interact with your Docker repositories and discover content on Docker Hub. + +| Name | Description | +|------|-------------| +| `check-repository` | Check repository | +| `check-repository-tag` | Check repository tag | +| `check-repository-tags` | Check repository tags | +| `create-repository` | Creates a new repository | +| `docker-hardened-images` | Lists available [Docker Hardened Images](https://www.docker.com/products/hardened-images/) in specified namespace | +| `get-namespaces` | Get organizations/namespaces for a user | +| `get-repository-dockerfile` | Gets dockerfile for repository | +| `get-repository-info` | Gets repository info | +| `list-repositories-by-namespace` | Lists repositories under namespace | +| `list-repository-tags` | List repository tags | +| `read-repository-tag` | Read repository tag | +| `search` | Search content on Docker Hub | +| `set-repository-dockerfile` | Sets Dockerfile for repository | +| `update-repository-info` | Updates repository info | From 2f4e855480d9cc3eec699ac4215c23c863ee6741 Mon Sep 17 00:00:00 2001 From: sheltongraves <148902861+sheltongraves@users.noreply.github.com> Date: Thu, 26 Jun 2025 09:54:38 -0400 Subject: [PATCH 02/12] Update content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp Co-authored-by: Arthur --- content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp | 1 + 1 file changed, 1 insertion(+) diff --git a/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp b/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp index ca29f29dfc4b..82fe2a3e03d5 100644 --- a/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp +++ b/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp @@ -77,6 +77,7 @@ $ docker ai "Show me information about my '' repository" ``` ### Pull/Push Images + ```console # Pull latest PostgreSQL version $ docker ai "Pull the latest postgres image" From dc132ae87bbd3ff7af131b73afdeb08986de2174 Mon Sep 17 00:00:00 2001 From: sheltongraves <148902861+sheltongraves@users.noreply.github.com> Date: Thu, 26 Jun 2025 09:54:45 -0400 Subject: [PATCH 03/12] Update content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp Co-authored-by: Arthur --- content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp b/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp index 82fe2a3e03d5..f86b211a0540 100644 --- a/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp +++ b/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp @@ -4,7 +4,7 @@ description: Use the MCP Toolkit to set up MCP servers and MCP clients. keywords: Docker Hub MCP Server, Hub MCP server, Hub MCP --- -The Docker Hub MCP Server is a Model Context Protocol (MCP) server that interfaces with Docker Hub APIs to make rich image metadata accessible to LLMs, enabling intelligent content discovery and repository management. Developers building with containers, especially in AI and LLM-powered workflows, often face inadequate context across the vast landscape of Docker Hub images. As a result, LLMs struggle to recommend the right images, and developers lose time manually searching instead of building. +The Docker Hub MCP Server is a Model Context Protocol (MCP) server that interfaces with Docker Hub APIs to make rich image metadata accessible to LLMs, enabling intelligent content discovery and repository management. Developers building with containers, especially in AI and LLM-powered workflows, often face inadequate context across the vast landscape of Docker Hub images. As a result, LLMs struggle to recommend the right images, and developers lose time manually searching instead of building. ## Key features From fce8f8309f247d0ceb41a7c2d8ef725f6fa648a3 Mon Sep 17 00:00:00 2001 From: sheltongraves <148902861+sheltongraves@users.noreply.github.com> Date: Thu, 26 Jun 2025 09:54:53 -0400 Subject: [PATCH 04/12] Update content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp Co-authored-by: Arthur --- content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp b/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp index f86b211a0540..f0db1d10aeb8 100644 --- a/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp +++ b/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp @@ -115,8 +115,7 @@ $ docker ai "What is the most secure image I can use to run a node.js applicatio $ docker ai "Can you help me update my Dockerfile to use a docker hardened image instead of the current one" ``` > [!NOTE] -> To access Docker Hardened Images, a subscription is required. If you're interested in using Docker Hardened Images, please visit: - [Docker Hardened Images](https://www.docker.com/products/hardened-images/) +> To access Docker Hardened Images, a subscription is required. If you're interested in using Docker Hardened Images, visit [Docker Hardened Images](https://www.docker.com/products/hardened-images/). ## Reference From a1bf2bcc02a1d6672c247afe585af3a0052aabaf Mon Sep 17 00:00:00 2001 From: sheltongraves <148902861+sheltongraves@users.noreply.github.com> Date: Thu, 26 Jun 2025 13:33:55 -0400 Subject: [PATCH 05/12] Rename hub-mcp to hub-mcp.md Added md to name --- .../manuals/ai/mcp-catalog-and-toolkit/{hub-mcp => hub-mcp.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename content/manuals/ai/mcp-catalog-and-toolkit/{hub-mcp => hub-mcp.md} (100%) diff --git a/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp b/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md similarity index 100% rename from content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp rename to content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md From 6366a490c6bf7fa606746fdb48f8cdbfacac8276 Mon Sep 17 00:00:00 2001 From: sheltongraves <148902861+sheltongraves@users.noreply.github.com> Date: Fri, 27 Jun 2025 11:37:27 -0400 Subject: [PATCH 06/12] Update hub-mcp.md Added Claude and VS Code --- .../ai/mcp-catalog-and-toolkit/hub-mcp.md | 77 +++++++++++++++++++ 1 file changed, 77 insertions(+) diff --git a/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md b/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md index f0db1d10aeb8..cb9f6c718492 100644 --- a/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md +++ b/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md @@ -27,6 +27,83 @@ The Docker Hub MCP Server is a Model Context Protocol (MCP) server that interfac > [!TIP] > By default, the Gordon [client](#install-an-mcp-client) is enabled, > which means Gordon can automatically interact with your MCP servers. +> +## Use Claude Desktop as a client + +1. Add the Docker Hub MCP Server configuration to your `claude_desktop_config.json`: + +#### For public repositories only: + + - `/FULL/PATH/TO/YOUR/docker-hub-mcp-server` - The complete path to where you cloned this repository +```json +{ + "mcpServers": { + "docker-hub": { + "command": "node", + "args": ["/FULL/PATH/TO/YOUR/docker-hub-mcp-server/dist/index.js", "--transport=stdio"] + } + } +} +``` +#### For authenticated access (recommended): + Replace the following values: + - `YOUR_DOCKER_HUB_USERNAME` - Your Docker Hub username + - `YOUR_DOCKER_HUB_PERSONAL_ACCESS_TOKEN` - Your Docker Hub Personal Access Token + - `/FULL/PATH/TO/YOUR/docker-hub-mcp-server` - The complete path to where you cloned this + +```json +{ + "mcpServers": { + "docker-hub": { + "command": "node", + "args": ["/FULL/PATH/TO/YOUR/docker-hub-mcp-server/dist/index.js", "--transport=stdio", "--username=YOUR_DOCKER_HUB_USERNAME"], + "env": { + "HUB_PAT_TOKEN": "YOUR_DOCKER_HUB_PERSONAL_ACCESS_TOKEN" + } + } + } +} +``` +2. Save the configuration file and completely restart Claude Desktop for the changes to take effect. + +## Usage with VS Code +1. Add the Docker Hub MCP Server configuration to your User Settings (JSON) file in VS Code. You can do this by opening the `Command Palette` and typing `Preferences: Open User Settings (JSON)`. + +#### For public repositories only: + + - `/FULL/PATH/TO/YOUR/docker-hub-mcp-server` - The complete path to where you cloned this repository +```json +{ + "mcpServers": { + "docker-hub": { + "command": "node", + "args": ["/FULL/PATH/TO/YOUR/docker-hub-mcp-server/dist/index.js", "--transport=stdio"] + } + } +} +``` +#### For authenticated access (recommended): + Replace the following values: + - `YOUR_DOCKER_HUB_USERNAME` - Your Docker Hub username + - `YOUR_DOCKER_HUB_PERSONAL_ACCESS_TOKEN` - Your Docker Hub Personal Access Token + - `/FULL/PATH/TO/YOUR/docker-hub-mcp-server` - The complete path to where you cloned this + +```json +{ + "mcpServers": { + "docker-hub": { + "command": "node", + "args": ["/FULL/PATH/TO/YOUR/docker-hub-mcp-server/dist/index.js", "--transport=stdio"], + "env": { + "HUB_USERNAME": "YOUR_DOCKER_HUB_USERNAME", + "HUB_PAT_TOKEN": "YOUR_DOCKER_HUB_PERSONAL_ACCESS_TOKEN" + } + } + } +} +``` +2. Open the `Command Palette` and type `MCP: List Servers`. +3. Select `docker-hub` and select `Start Server`. ## Usage examples From 0f47ae20cc06a00a86d4f0e4c805db32dab1992d Mon Sep 17 00:00:00 2001 From: sheltongraves <148902861+sheltongraves@users.noreply.github.com> Date: Mon, 30 Jun 2025 21:33:00 -0400 Subject: [PATCH 07/12] Update hub-mcp.md Added instructions to the Github repo for OSS development --- content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md b/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md index cb9f6c718492..95b7664aa13f 100644 --- a/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md +++ b/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md @@ -27,7 +27,10 @@ The Docker Hub MCP Server is a Model Context Protocol (MCP) server that interfac > [!TIP] > By default, the Gordon [client](#install-an-mcp-client) is enabled, > which means Gordon can automatically interact with your MCP servers. -> + +## Using other clients +If want to integrate the Docker Hub MCP Server into your own development environment, you can find the source code and installation instructions on our [GitHub repository](https://github.com/docker/hub-mcp). + ## Use Claude Desktop as a client 1. Add the Docker Hub MCP Server configuration to your `claude_desktop_config.json`: From aa58f9a4bf94c28339e00324c857855a3b097fb2 Mon Sep 17 00:00:00 2001 From: sheltongraves <148902861+sheltongraves@users.noreply.github.com> Date: Mon, 30 Jun 2025 21:39:51 -0400 Subject: [PATCH 08/12] Update hub-mcp.md Add instructions to use Github Repo --- content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md b/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md index 95b7664aa13f..72eea485731c 100644 --- a/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md +++ b/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md @@ -31,6 +31,9 @@ The Docker Hub MCP Server is a Model Context Protocol (MCP) server that interfac ## Using other clients If want to integrate the Docker Hub MCP Server into your own development environment, you can find the source code and installation instructions on our [GitHub repository](https://github.com/docker/hub-mcp). +## Using other clients +If want to integrate the Docker Hub MCP Server into your own development environment, you can find the source code and installation instructions on our [GitHub repository](https://github.com/docker/hub-mcp). + ## Use Claude Desktop as a client 1. Add the Docker Hub MCP Server configuration to your `claude_desktop_config.json`: From ea7c1ab197880251c3602d4f257e6a37a3db027d Mon Sep 17 00:00:00 2001 From: sheltongraves <148902861+sheltongraves@users.noreply.github.com> Date: Tue, 1 Jul 2025 09:50:08 -0400 Subject: [PATCH 09/12] Update hub-mcp.md --- content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md b/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md index 72eea485731c..df4b02017d12 100644 --- a/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md +++ b/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md @@ -1,5 +1,5 @@ --- -title: Hub MCP +title: Hub MCP Server description: Use the MCP Toolkit to set up MCP servers and MCP clients. keywords: Docker Hub MCP Server, Hub MCP server, Hub MCP --- From f57ddc48e0e29b845ddd87573c086650289596df Mon Sep 17 00:00:00 2001 From: Allie Sadler <102604716+aevesdocker@users.noreply.github.com> Date: Fri, 4 Jul 2025 09:34:49 +0100 Subject: [PATCH 10/12] Apply suggestions from code review Style guide and formatting issues --- .../ai/mcp-catalog-and-toolkit/hub-mcp.md | 31 +++++++++---------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md b/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md index df4b02017d12..9e7b0a988db3 100644 --- a/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md +++ b/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md @@ -1,5 +1,5 @@ --- -title: Hub MCP Server +title: Docker Hub MCP server description: Use the MCP Toolkit to set up MCP servers and MCP clients. keywords: Docker Hub MCP Server, Hub MCP server, Hub MCP --- @@ -8,15 +8,15 @@ The Docker Hub MCP Server is a Model Context Protocol (MCP) server that interfac ## Key features -- Advanced LLM Context: Our MCP Server provides LLMs with detailed, structured context for Docker Hub images, enabling smarter, more relevant recommendations for developers, whether they're choosing a base image or automating CI/CD workflows. -- Natural Language Image Discovery: Developers can find the right container image using natural language, no need to remember tags or repository names. Just describe what you need, and Docker Hub will return images that match your intent. -- Simplified Repository Management: Hub MCP Server enables agents to manage repositories through natural language fetching image details, viewing stats, searching content, and performing key operations quickly and easily. +- Advanced LLM context: Our MCP Server provides LLMs with detailed, structured context for Docker Hub images, enabling smarter, more relevant recommendations for developers, whether they're choosing a base image or automating CI/CD workflows. +- Natural language image discovery: Developers can find the right container image using natural language, no need to remember tags or repository names. Just describe what you need, and Docker Hub will return images that match your intent. +- Simplified repository management: Hub MCP Server enables agents to manage repositories through natural language fetching image details, viewing stats, searching content, and performing key operations quickly and easily. ## Install Docker Hub MCP server 1. From the **MCP Toolkit** menu, select the **Catalog** tab and search for **Docker Hub** and select the plus icon to add the Docker Hub MCP server. -2. In the server's Configuration tab, insert your Docker Hub username and personal access token (PAT). -3. In the Clients tab in MCP Toolkit, ensure Gordon is connected. +2. In the server's **Configuration** tab, insert your Docker Hub username and personal access token (PAT). +3. In the **Clients** tab in MCP Toolkit, ensure Gordon is connected. 4. From the **Ask Gordon** menu, you can now send requests related to your Docker Hub account, in accordance to the tools provided by the Docker Hub MCP server. To test it, ask Gordon: @@ -31,14 +31,11 @@ The Docker Hub MCP Server is a Model Context Protocol (MCP) server that interfac ## Using other clients If want to integrate the Docker Hub MCP Server into your own development environment, you can find the source code and installation instructions on our [GitHub repository](https://github.com/docker/hub-mcp). -## Using other clients -If want to integrate the Docker Hub MCP Server into your own development environment, you can find the source code and installation instructions on our [GitHub repository](https://github.com/docker/hub-mcp). - ## Use Claude Desktop as a client 1. Add the Docker Hub MCP Server configuration to your `claude_desktop_config.json`: -#### For public repositories only: +### For public repositories only: - `/FULL/PATH/TO/YOUR/docker-hub-mcp-server` - The complete path to where you cloned this repository ```json @@ -51,7 +48,7 @@ If want to integrate the Docker Hub MCP Server into your own development environ } } ``` -#### For authenticated access (recommended): +### For authenticated access (recommended): Replace the following values: - `YOUR_DOCKER_HUB_USERNAME` - Your Docker Hub username - `YOUR_DOCKER_HUB_PERSONAL_ACCESS_TOKEN` - Your Docker Hub Personal Access Token @@ -75,7 +72,7 @@ If want to integrate the Docker Hub MCP Server into your own development environ ## Usage with VS Code 1. Add the Docker Hub MCP Server configuration to your User Settings (JSON) file in VS Code. You can do this by opening the `Command Palette` and typing `Preferences: Open User Settings (JSON)`. -#### For public repositories only: +### For public repositories only: - `/FULL/PATH/TO/YOUR/docker-hub-mcp-server` - The complete path to where you cloned this repository ```json @@ -88,7 +85,7 @@ If want to integrate the Docker Hub MCP Server into your own development environ } } ``` -#### For authenticated access (recommended): +### For authenticated access (recommended): Replace the following values: - `YOUR_DOCKER_HUB_USERNAME` - Your Docker Hub username - `YOUR_DOCKER_HUB_PERSONAL_ACCESS_TOKEN` - Your Docker Hub Personal Access Token @@ -137,7 +134,7 @@ $ docker ai "Help me find the right Ubuntu version for my project" ``` -### Repository Management +### Repository management ```console # Create a repository @@ -159,7 +156,7 @@ $ docker ai "Show me my most recently updated repositories" $ docker ai "Show me information about my '' repository" ``` -### Pull/Push Images +### Pull/push images ```console # Pull latest PostgreSQL version @@ -169,7 +166,7 @@ $ docker ai "Pull the latest postgres image" $ docker ai "Push my to my repository" ``` -### Tag Management +### Tag management ```console # List all tags for a repository @@ -206,7 +203,7 @@ $ docker ai "Can you help me update my Dockerfile to use a docker hardened image This section provides a comprehensive listing of the tools you can find in the Docker Hub MCP Server. -### Docker Hub MCP Server tools +### Docker Hub MCP server tools Tools to interact with your Docker repositories and discover content on Docker Hub. From c10b6b618e18a068ba339a629ebdb37c589b4ff1 Mon Sep 17 00:00:00 2001 From: Arthur Date: Wed, 9 Jul 2025 15:37:07 +0200 Subject: [PATCH 11/12] Update content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md --- content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md b/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md index 9e7b0a988db3..165300d4e8d8 100644 --- a/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md +++ b/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md @@ -25,7 +25,7 @@ The Docker Hub MCP Server is a Model Context Protocol (MCP) server that interfac ``` > [!TIP] -> By default, the Gordon [client](#install-an-mcp-client) is enabled, +> By default, the Gordon [client](/manuals/ai/mcp-catalog-and-toolkit/toolkit.md#install-an-mcp-client) is enabled, > which means Gordon can automatically interact with your MCP servers. ## Using other clients From f36b4240d5247fd1addc45dd25b5614a9ef842c9 Mon Sep 17 00:00:00 2001 From: Arthur Date: Wed, 9 Jul 2025 15:37:14 +0200 Subject: [PATCH 12/12] Update content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md --- content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md b/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md index 165300d4e8d8..ad6f1a232e8d 100644 --- a/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md +++ b/content/manuals/ai/mcp-catalog-and-toolkit/hub-mcp.md @@ -15,9 +15,9 @@ The Docker Hub MCP Server is a Model Context Protocol (MCP) server that interfac ## Install Docker Hub MCP server 1. From the **MCP Toolkit** menu, select the **Catalog** tab and search for **Docker Hub** and select the plus icon to add the Docker Hub MCP server. -2. In the server's **Configuration** tab, insert your Docker Hub username and personal access token (PAT). -3. In the **Clients** tab in MCP Toolkit, ensure Gordon is connected. -4. From the **Ask Gordon** menu, you can now send requests related to your +1. In the server's **Configuration** tab, insert your Docker Hub username and personal access token (PAT). +1. In the **Clients** tab in MCP Toolkit, ensure Gordon is connected. +1. From the **Ask Gordon** menu, you can now send requests related to your Docker Hub account, in accordance to the tools provided by the Docker Hub MCP server. To test it, ask Gordon: ```text