diff --git a/pkg/mcp/resources_test.go b/pkg/mcp/resources_test.go index d792967c0a..96b5f1ed0b 100644 --- a/pkg/mcp/resources_test.go +++ b/pkg/mcp/resources_test.go @@ -150,6 +150,21 @@ func TestResource_Help(t *testing.T) { uri: "func://help/config/envs/add", wantArgs: []string{"config", "envs", "add", "--help"}, }, + { + name: "config volumes remove help", + uri: "func://help/config/volumes/remove", + wantArgs: []string{"config", "volumes", "remove", "--help"}, + }, + { + name: "config labels remove help", + uri: "func://help/config/labels/remove", + wantArgs: []string{"config", "labels", "remove", "--help"}, + }, + { + name: "config envs remove help", + uri: "func://help/config/envs/remove", + wantArgs: []string{"config", "envs", "remove", "--help"}, + }, } for _, tc := range cases {