1
0
mirror of https://github.com/samanhappy/mcphub.git synced 2026-01-11 00:58:20 -05:00

feat: Implement tool management features including tool execution and result handling (#152)

This commit is contained in:
samanhappy
2025-05-31 22:00:05 +08:00
committed by GitHub
parent d2bbadea83
commit 65c95aaa0b
12 changed files with 935 additions and 56 deletions

View File

@@ -1,6 +1,38 @@
import { ChevronDown, ChevronRight, Edit, Trash, Copy, Check, User, Settings, LogOut, Info } from 'lucide-react'
import {
ChevronDown,
ChevronRight,
Edit,
Trash,
Copy,
Check,
User,
Settings,
LogOut,
Info,
Play,
Loader,
CheckCircle,
XCircle,
AlertCircle
} from 'lucide-react'
export { ChevronDown, ChevronRight, Edit, Trash, Copy, Check, User, Settings, LogOut, Info }
export {
ChevronDown,
ChevronRight,
Edit,
Trash,
Copy,
Check,
User,
Settings,
LogOut,
Info,
Play,
Loader,
CheckCircle,
XCircle,
AlertCircle
}
const LucideIcons = {
ChevronDown,
@@ -12,7 +44,12 @@ const LucideIcons = {
User,
Settings,
LogOut,
Info
Info,
Play,
Loader,
CheckCircle,
XCircle,
AlertCircle
}
export default LucideIcons