File size: 19,196 Bytes
5da4770 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 |
"use client";
import { useState, useEffect } from "react";
import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle } from "@/components/ui/dialog";
import { Button } from "@/components/ui/button";
import { ScrollArea } from "@/components/ui/scroll-area";
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs";
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
import { Badge } from "@/components/ui/badge";
import { Switch } from "@/components/ui/switch";
import { Save, Settings, Search, Database, GitBranch, MessageSquare, AlertTriangle } from "lucide-react";
import { CredentialProfileSelector } from "./CredentialProfileSelector";
import { type CredentialProfile } from "@/hooks/react-query/mcp/use-credential-profiles";
interface MCPServer {
id: string;
name: string;
description: string;
icon: any;
qualifiedName: string;
configSchema: {
properties: Record<string, {
type: string;
title: string;
description: string;
format?: string;
}>;
required: string[];
};
tools: Array<{
name: string;
description: string;
}>;
}
interface MCPConfiguration {
id: string;
name: string;
qualifiedName: string;
profileId?: string; // NEW: Reference to credential profile
config: Record<string, any>;
enabledTools: string[];
isConfigured: boolean;
}
interface MCPConfigurationDialogProps {
open: boolean;
onOpenChange: (open: boolean) => void;
onSave: (configurations: MCPConfiguration[], profileMappings: Record<string, string>) => void;
existingConfigurations?: MCPConfiguration[];
existingProfileMappings?: Record<string, string>;
}
// Updated mock MCP servers with qualified names
const mockMCPServers: MCPServer[] = [
{
id: "exa",
name: "Exa Search",
description: "Advanced web search with AI-powered results",
icon: Search,
qualifiedName: "exa",
configSchema: {
properties: {
exaApiKey: {
type: "string",
title: "Exa API Key",
description: "Your Exa API key for search functionality",
format: "password"
}
},
required: ["exaApiKey"]
},
tools: [
{ name: "web_search_exa", description: "Search the web with Exa" },
{ name: "find_similar", description: "Find similar content" }
]
},
{
id: "github",
name: "GitHub",
description: "Access GitHub repositories, issues, and pull requests",
icon: GitBranch,
qualifiedName: "github",
configSchema: {
properties: {
githubToken: {
type: "string",
title: "GitHub Token",
description: "Personal access token for GitHub API",
format: "password"
},
defaultOwner: {
type: "string",
title: "Default Owner",
description: "Default repository owner/organization"
}
},
required: ["githubToken"]
},
tools: [
{ name: "list_repositories", description: "List repositories" },
{ name: "get_repository", description: "Get repository details" },
{ name: "create_issue", description: "Create a new issue" },
{ name: "list_issues", description: "List repository issues" }
]
},
{
id: "slack",
name: "Slack",
description: "Send messages and interact with Slack workspaces",
icon: MessageSquare,
qualifiedName: "@smithery-ai/slack",
configSchema: {
properties: {
slackBotToken: {
type: "string",
title: "Slack Bot Token",
description: "Bot token for Slack API (starts with xoxb-)",
format: "password"
},
defaultChannel: {
type: "string",
title: "Default Channel",
description: "Default channel for messages (e.g., #general)"
}
},
required: ["slackBotToken"]
},
tools: [
{ name: "slack_post_message", description: "Send a message to a channel" },
{ name: "slack_list_channels", description: "List available channels" },
{ name: "slack_get_channel_history", description: "Get channel message history" }
]
},
{
id: "postgres",
name: "PostgreSQL",
description: "Execute SQL queries and manage PostgreSQL databases",
icon: Database,
qualifiedName: "postgres",
configSchema: {
properties: {
host: {
type: "string",
title: "Host",
description: "PostgreSQL server host"
},
port: {
type: "string",
title: "Port",
description: "PostgreSQL server port (default: 5432)"
},
database: {
type: "string",
title: "Database",
description: "Database name"
},
username: {
type: "string",
title: "Username",
description: "Database username"
},
password: {
type: "string",
title: "Password",
description: "Database password",
format: "password"
}
},
required: ["host", "database", "username", "password"]
},
tools: [
{ name: "execute_query", description: "Execute SQL query" },
{ name: "list_tables", description: "List database tables" },
{ name: "describe_table", description: "Get table schema" }
]
}
];
export default function MCPConfigurationDialog({
open,
onOpenChange,
onSave,
existingConfigurations = [],
existingProfileMappings = {}
}: MCPConfigurationDialogProps) {
const [configurations, setConfigurations] = useState<MCPConfiguration[]>(existingConfigurations);
const [profileMappings, setProfileMappings] = useState<Record<string, string>>(existingProfileMappings);
const [selectedServer, setSelectedServer] = useState<MCPServer | null>(null);
const [selectedProfile, setSelectedProfile] = useState<CredentialProfile | null>(null);
const [enabledTools, setEnabledTools] = useState<Set<string>>(new Set());
const [activeTab, setActiveTab] = useState("browse");
useEffect(() => {
setConfigurations(existingConfigurations);
setProfileMappings(existingProfileMappings);
}, [existingConfigurations, existingProfileMappings]);
const handleServerSelect = (server: MCPServer) => {
setSelectedServer(server);
// Load existing configuration if available
const existingConfig = configurations.find(c => c.id === server.id);
if (existingConfig) {
setEnabledTools(new Set(existingConfig.enabledTools));
// selectedProfile will be set by CredentialProfileSelector
} else {
setEnabledTools(new Set(server.tools.map(t => t.name))); // Enable all tools by default
setSelectedProfile(null);
}
setActiveTab("configure");
};
const handleProfileSelect = (profileId: string | null, profile: CredentialProfile | null) => {
setSelectedProfile(profile);
if (selectedServer && profileId) {
// Update profile mapping
setProfileMappings(prev => ({
...prev,
[selectedServer.qualifiedName]: profileId
}));
}
};
const handleConfigSave = () => {
if (!selectedServer || !selectedProfile) return;
const newConfig: MCPConfiguration = {
id: selectedServer.id,
name: selectedServer.name,
qualifiedName: selectedServer.qualifiedName,
profileId: selectedProfile.profile_id,
config: {}, // Config is now managed by credential profiles
enabledTools: Array.from(enabledTools),
isConfigured: true
};
const updatedConfigurations = configurations.filter(c => c.id !== selectedServer.id);
updatedConfigurations.push(newConfig);
setConfigurations(updatedConfigurations);
setSelectedServer(null);
setSelectedProfile(null);
setActiveTab("browse");
};
const handleRemoveConfiguration = (id: string) => {
const config = configurations.find(c => c.id === id);
if (config) {
// Remove from profile mappings
const { [config.qualifiedName]: removed, ...remainingMappings } = profileMappings;
setProfileMappings(remainingMappings);
}
setConfigurations(configurations.filter(c => c.id !== id));
};
const handleSaveAll = () => {
onSave(configurations, profileMappings);
onOpenChange(false);
};
const isConfigValid = () => {
return selectedServer && selectedProfile && enabledTools.size > 0;
};
return (
<Dialog open={open} onOpenChange={onOpenChange}>
<DialogContent className="max-w-6xl max-h-[85vh] overflow-hidden flex flex-col">
<DialogHeader>
<DialogTitle>Configure MCP Servers</DialogTitle>
<DialogDescription>
Set up Model Context Protocol servers for your workflow using credential profiles
</DialogDescription>
</DialogHeader>
<Tabs value={activeTab} onValueChange={setActiveTab} className="flex-1 flex flex-col">
<TabsList className="grid w-full grid-cols-3">
<TabsTrigger value="browse">Browse Servers</TabsTrigger>
<TabsTrigger value="configure" disabled={!selectedServer}>Configure</TabsTrigger>
<TabsTrigger value="configured">Configured ({configurations.length})</TabsTrigger>
</TabsList>
<TabsContent value="browse" className="flex-1">
<ScrollArea className="flex-1">
<div className="grid grid-cols-2 gap-4 p-1">
{mockMCPServers.map((server) => {
const isConfigured = configurations.some(c => c.id === server.id);
return (
<Card
key={server.id}
className={`cursor-pointer hover:shadow-md transition-shadow ${isConfigured ? 'ring-2 ring-green-500' : ''}`}
onClick={() => handleServerSelect(server)}
>
<CardHeader>
<div className="flex items-center gap-3">
<server.icon className="h-6 w-6" />
<div className="flex-1">
<CardTitle className="text-base">{server.name}</CardTitle>
<CardDescription className="text-sm">{server.description}</CardDescription>
</div>
{isConfigured && (
<Badge variant="default" className="bg-green-500">
Configured
</Badge>
)}
</div>
</CardHeader>
<CardContent>
<div className="text-xs text-muted-foreground">
{server.tools.length} tools available
</div>
</CardContent>
</Card>
);
})}
</div>
</ScrollArea>
</TabsContent>
<TabsContent value="configure" className="flex-1">
{selectedServer && (
<div className="flex-1 grid grid-cols-2 gap-6">
<div className="space-y-4">
<div className="flex items-center gap-3">
<selectedServer.icon className="h-6 w-6" />
<div>
<h3 className="font-semibold">{selectedServer.name}</h3>
<p className="text-sm text-muted-foreground">{selectedServer.description}</p>
</div>
</div>
<Card>
<CardHeader>
<CardTitle className="text-base">Credential Profile</CardTitle>
<CardDescription>
Select or create a credential profile for this MCP server
</CardDescription>
</CardHeader>
<CardContent>
<CredentialProfileSelector
mcpQualifiedName={selectedServer.qualifiedName}
mcpDisplayName={selectedServer.name}
selectedProfileId={profileMappings[selectedServer.qualifiedName]}
onProfileSelect={handleProfileSelect}
/>
</CardContent>
</Card>
</div>
<div className="space-y-4">
<Card>
<CardHeader>
<CardTitle className="text-base">Available Tools</CardTitle>
<CardDescription>
Select which tools to enable for this server
</CardDescription>
</CardHeader>
<CardContent>
<ScrollArea className="h-64">
<div className="space-y-3">
{selectedServer.tools.map((tool) => (
<div key={tool.name} className="flex items-start gap-3 p-3 border rounded-lg">
<Switch
checked={enabledTools.has(tool.name)}
onCheckedChange={(checked) => {
const newTools = new Set(enabledTools);
if (checked) {
newTools.add(tool.name);
} else {
newTools.delete(tool.name);
}
setEnabledTools(newTools);
}}
/>
<div className="flex-1">
<div className="font-medium text-sm">{tool.name}</div>
<div className="text-xs text-muted-foreground">{tool.description}</div>
</div>
</div>
))}
</div>
</ScrollArea>
</CardContent>
</Card>
<div className="flex gap-2">
<Button variant="outline" onClick={() => setSelectedServer(null)}>
Cancel
</Button>
<Button onClick={handleConfigSave} disabled={!isConfigValid()}>
<Save className="h-4 w-4 mr-2" />
Save Configuration
</Button>
</div>
</div>
</div>
)}
</TabsContent>
<TabsContent value="configured" className="flex-1">
<ScrollArea className="flex-1">
{configurations.length === 0 ? (
<div className="text-center py-12">
<Settings className="h-12 w-12 mx-auto text-muted-foreground mb-4" />
<h3 className="text-lg font-semibold mb-2">No MCP Servers Configured</h3>
<p className="text-muted-foreground">
Configure MCP servers to use them in your workflows
</p>
</div>
) : (
<div className="space-y-4 p-1">
{configurations.map((config) => {
const server = mockMCPServers.find(s => s.id === config.id);
if (!server) return null;
const profileId = profileMappings[config.qualifiedName];
const hasValidProfile = !!profileId;
return (
<Card key={config.id} className={!hasValidProfile ? 'border-yellow-500' : ''}>
<CardHeader>
<div className="flex items-center justify-between">
<div className="flex items-center gap-3">
<server.icon className="h-6 w-6" />
<div>
<CardTitle className="text-base flex items-center gap-2">
{config.name}
{!hasValidProfile && (
<AlertTriangle className="h-4 w-4 text-yellow-500" />
)}
</CardTitle>
<CardDescription>
{config.enabledTools.length} tools enabled
{profileId && (
<span className="ml-2">
• Profile: {profileId.slice(0, 8)}...
</span>
)}
</CardDescription>
</div>
</div>
<div className="flex gap-2">
<Button
variant="outline"
size="sm"
onClick={() => handleServerSelect(server)}
>
<Settings className="h-4 w-4" />
</Button>
<Button
variant="destructive"
size="sm"
onClick={() => handleRemoveConfiguration(config.id)}
>
Remove
</Button>
</div>
</div>
</CardHeader>
<CardContent>
<div className="flex flex-wrap gap-1">
{config.enabledTools.map((tool) => (
<Badge key={tool} variant="secondary" className="text-xs">
{tool}
</Badge>
))}
</div>
{!hasValidProfile && (
<div className="mt-2 p-2 bg-yellow-50 border border-yellow-200 rounded text-sm text-yellow-800">
<AlertTriangle className="h-4 w-4 inline mr-1" />
No credential profile selected. Please configure credentials.
</div>
)}
</CardContent>
</Card>
);
})}
</div>
)}
</ScrollArea>
</TabsContent>
</Tabs>
<DialogFooter>
<Button variant="outline" onClick={() => onOpenChange(false)}>
Cancel
</Button>
<Button onClick={handleSaveAll}>
<Save className="h-4 w-4 mr-2" />
Save All Configurations
</Button>
</DialogFooter>
</DialogContent>
</Dialog>
);
} |