diff --git a/client/src/components/ToolsTab.tsx b/client/src/components/ToolsTab.tsx
index 7692b79c5..91168d5cc 100644
--- a/client/src/components/ToolsTab.tsx
+++ b/client/src/components/ToolsTab.tsx
@@ -5,6 +5,13 @@ import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { TabsContent } from "@/components/ui/tabs";
import { Textarea } from "@/components/ui/textarea";
+import {
+ Select,
+ SelectContent,
+ SelectItem,
+ SelectTrigger,
+ SelectValue,
+} from "@/components/ui/select";
import DynamicJsonForm, { DynamicJsonFormRef } from "./DynamicJsonForm";
import type { JsonValue, JsonSchemaType } from "@/utils/jsonUtils";
import {
@@ -182,6 +189,42 @@ const ToolsTab = ({
{prop.description || "Toggle this option"}
+ ) : prop.type === "string" && prop.enum ? (
+
) : prop.type === "string" ? (