diff --git a/client/src/components/ToolsTab.tsx b/client/src/components/ToolsTab.tsx index 7b85ccc..1645422 100644 --- a/client/src/components/ToolsTab.tsx +++ b/client/src/components/ToolsTab.tsx @@ -83,9 +83,19 @@ const ToolsTab = ({ /> )} {item.type === "resource" && ( -
- {JSON.stringify(item.resource, null, 2)}
-
+ item.resource?.mimeType?.startsWith("audio/") ? (
+
+ ) : (
+
+ {JSON.stringify(item.resource, null, 2)}
+
+ )
)}
))}