command: docker mcp profile tools short: Manage tool allowlist for servers in a profile long: |- Manage the tool allowlist for servers in a profile. Tools are specified using dot notation: . Use --enable to enable specific tools for a server (can be specified multiple times). Use --disable to disable specific tools for a server (can be specified multiple times). Use --enable-all to enable all tools for a server (can be specified multiple times). Use --disable-all to disable all tools for a server (can be specified multiple times). To view enabled tools, use: docker mcp profile show usage: docker mcp profile tools [--enable ...] [--disable ...] [--enable-all ...] [--disable-all ...] pname: docker mcp profile plink: docker_mcp_profile.yaml options: - option: disable value_type: stringArray default_value: '[]' description: 'Disable specific tools: . (repeatable)' deprecated: false hidden: false experimental: false experimentalcli: false kubernetes: false swarm: false - option: disable-all value_type: stringArray default_value: '[]' description: 'Disable all tools for a server: (repeatable)' deprecated: false hidden: false experimental: false experimentalcli: false kubernetes: false swarm: false - option: enable value_type: stringArray default_value: '[]' description: 'Enable specific tools: . (repeatable)' deprecated: false hidden: false experimental: false experimentalcli: false kubernetes: false swarm: false - option: enable-all value_type: stringArray default_value: '[]' description: 'Enable all tools for a server: (repeatable)' deprecated: false hidden: false experimental: false experimentalcli: false kubernetes: false swarm: false examples: |4- # Enable specific tools for a server docker mcp profile tools my-profile --enable github.create_issue --enable github.list_repos # Disable specific tools for a server docker mcp profile tools my-profile --disable github.create_issue --disable github.search_code # Enable and disable in one command docker mcp profile tools my-profile --enable github.create_issue --disable github.search_code # Enable all tools for a server docker mcp profile tools my-profile --enable-all github # Disable all tools for a server docker mcp profile tools my-profile --disable-all github # View all enabled tools in the profile docker mcp profile show my-profile deprecated: false hidden: false experimental: false experimentalcli: false kubernetes: false swarm: false