@@ -19,21 +19,6 @@ This creates a YAML file with real server definitions that you can:
1919- Import directly into your catalog collection
2020- Use as a source for copying individual servers to other catalogs
2121
22- ## Feature Activation
23-
24- Custom catalogs can be managed by enabling the ` configured-catalogs ` feature:
25-
26- ``` bash
27- # Enable the feature
28- docker mcp feature enable configured-catalogs
29-
30- # Verify it's enabled
31- docker mcp feature list
32-
33- # Use configured catalogs with the gateway
34- docker mcp gateway run --use-configured-catalogs
35- ```
36-
3722## Catalog Management Commands
3823
3924### Listing Catalogs
@@ -153,9 +138,6 @@ registry:
153138 title : " Server Display Name"
154139 type : " server" # or "poci" for container tools
155140 image : " namespace/image:tag"
156- tools :
157- - name : " tool1"
158- - name : " tool2"
159141 # Additional server configuration...
160142```
161143
288270
289271# 5. Add your custom server
290272docker mcp catalog add dev-servers my-dev-server ./my-server.yaml
291-
292- # 6. Enable the feature and run with your catalog
293- docker mcp feature enable configured-catalogs
294- docker mcp gateway run --use-configured-catalogs
295273```
296274
297275### Team Sharing Workflow
@@ -308,7 +286,7 @@ docker mcp catalog export team-servers ./team-catalog.yaml
308286# Team members: Import the shared catalog
309287docker mcp catalog import ./team-catalog.yaml
310288docker mcp feature enable configured-catalogs
311- docker mcp gateway run --use-configured-catalogs
289+ docker mcp gateway run
312290```
313291
314292### Testing New Servers
@@ -321,7 +299,7 @@ docker mcp catalog create test-servers
321299docker mcp catalog add test-servers test-server ./test-server.yaml
322300
323301# 3. Run gateway with test catalog
324- docker mcp gateway run --use-configured-catalogs
302+ docker mcp gateway run
325303
326304# 4. When done testing, clean up
327305docker mcp catalog rm test-servers
@@ -347,7 +325,7 @@ docker mcp gateway run --use-configured-catalogs
347325
348326## Catalog Precedence
349327
350- When using ` --use-configured-catalogs ` , catalogs are loaded in this order:
328+ Catalogs are loaded in this order:
351329
3523301 . ** Docker Official Catalog** (always loaded first)
3533312 . ** Configured Catalogs** (user-imported catalogs)
@@ -365,12 +343,6 @@ This process makes your servers available to all Docker MCP users through the of
365343
366344## Troubleshooting
367345
368- ### Feature Not Enabled
369- ``` bash
370- Error: configured catalogs feature is not enabled
371- ```
372- ** Solution** : Run ` docker mcp feature enable configured-catalogs `
373-
374346### File Already Exists
375347``` bash
376348Error: file " catalog.yaml" already exists - will not overwrite
@@ -390,4 +362,4 @@ Error: cannot export the Docker MCP catalog as it is managed by Docker
390362** Solution** : This is intentional - Docker's catalog cannot be exported. Use ` bootstrap ` to get Docker server examples instead.
391363
392364### Container Mode Issues
393- If running in container mode, ensure proper volume mounts for accessing catalog files and Docker configuration.
365+ If running in container mode, ensure proper volume mounts for accessing catalog files and Docker configuration.
0 commit comments