File size: 46,774 Bytes
ae1f568 |
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 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 |
import gradio as gr
import asyncio
import json
import logging
from typing import List, Dict, Any, Optional, Tuple
from dataclasses import dataclass, field
import anthropic
import aiohttp
from mcp import ClientSession
from mcp.client.sse import sse_client
# Setup logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
@dataclass
class MCPSSEServerConfig:
name: str
url: str
headers: Dict[str, str] = field(default_factory=dict)
timeout: int = 50
sse_read_timeout: int = 50
class FastAgentMCPClient:
def __init__(self, config: MCPSSEServerConfig):
self.config = config
self.session = None
self.tools = []
self.connected = False
self.client_session = None
async def connect(self):
"""Establish connection using fast-agent-mcp"""
try:
logger.info(f"Connecting to {self.config.name} using fast-agent-mcp")
# Use MCP SSE client from fast-agent-mcp
self.client_session = await sse_client(
self.config.url,
headers=self.config.headers,
timeout=self.config.timeout
)
# Initialize the session
await self.client_session.initialize()
# Get available tools
tools_result = await self.client_session.list_tools()
self.tools = tools_result.tools if hasattr(tools_result, 'tools') else []
self.connected = True
logger.info(f"Successfully connected to {self.config.name} with {len(self.tools)} tools")
except Exception as e:
logger.error(f"Failed to connect to {self.config.name} using fast-agent-mcp: {e}")
# Fallback to manual SSE implementation
await self._fallback_connect()
async def _fallback_connect(self):
"""Fallback connection method using manual SSE handling"""
try:
logger.info(f"Attempting fallback connection for {self.config.name}")
# Create HTTP session for manual SSE handling
connector = aiohttp.TCPConnector(limit=100, limit_per_host=30)
self.session = aiohttp.ClientSession(
timeout=aiohttp.ClientTimeout(total=self.config.timeout),
connector=connector,
connector_owner=True
)
# Test SSE endpoint
await self._test_sse_endpoint()
# Try to get server capabilities
await self._probe_server_capabilities()
self.connected = True
logger.info(f"Fallback connection successful for {self.config.name}")
except Exception as e:
logger.warning(f"Fallback connection failed for {self.config.name}: {e}")
# Still mark as connected for graceful degradation
self.connected = True
self.tools = []
logger.info(f"Graceful connection established for {self.config.name} (no tools)")
async def _test_sse_endpoint(self):
"""Test SSE endpoint connectivity"""
try:
async with self.session.get(
self.config.url,
headers={
"Accept": "text/event-stream",
"Cache-Control": "no-cache",
"Connection": "keep-alive",
"User-Agent": "Klaide-FastAgent-MCP/1.0.0",
**self.config.headers
},
timeout=aiohttp.ClientTimeout(total=10),
allow_redirects=True,
max_redirects=10
) as response:
# Log redirect chain if any
if response.history:
redirect_chain = " -> ".join([str(h.url) for h in response.history])
logger.info(f"SSE endpoint redirected: {redirect_chain} -> {response.url}")
if response.status in [200, 204]:
logger.info(f"SSE endpoint accessible for {self.config.name}")
elif response.status == 405:
# Handle 405 gracefully - might be expecting different method
logger.warning(f"SSE endpoint returned 405 for {self.config.name} - continuing gracefully")
else:
logger.warning(f"SSE endpoint returned {response.status} for {self.config.name}")
except Exception as e:
logger.warning(f"SSE endpoint test failed for {self.config.name}: {e}")
async def _probe_server_capabilities(self):
"""Probe server for MCP capabilities"""
probe_methods = [
self._probe_jsonrpc_post,
self._probe_jsonrpc_get,
self._probe_rest_api,
self._probe_websocket
]
for method in probe_methods:
try:
tools = await method()
if tools:
self.tools = tools
logger.info(f"Successfully probed {self.config.name} and found {len(tools)} tools")
return
except Exception as e:
logger.debug(f"Probe method failed for {self.config.name}: {e}")
continue
# If all probes fail, set empty tools
self.tools = []
logger.info(f"All probe methods failed for {self.config.name}, setting empty tools")
async def _probe_jsonrpc_post(self):
"""Probe using JSON-RPC POST method"""
# Try to initialize with JSON-RPC
init_message = {
"jsonrpc": "2.0",
"id": 1,
"method": "initialize",
"params": {
"protocolVersion": "2024-11-05",
"capabilities": {"tools": {}},
"clientInfo": {"name": "klaide-fast-agent", "version": "1.0.0"}
}
}
async with self.session.post(
self.config.url,
json=init_message,
headers={
"Content-Type": "application/json",
"User-Agent": "Klaide-FastAgent-MCP/1.0.0",
**self.config.headers
},
timeout=aiohttp.ClientTimeout(total=15),
allow_redirects=True,
max_redirects=10
) as response:
if response.status != 200:
raise Exception(f"Init failed with status {response.status}")
result = await response.json()
if "error" in result:
raise Exception(f"Init error: {result['error']}")
# Get tools list
tools_message = {
"jsonrpc": "2.0",
"id": 2,
"method": "tools/list",
"params": {}
}
async with self.session.post(
self.config.url,
json=tools_message,
headers={
"Content-Type": "application/json",
"User-Agent": "Klaide-FastAgent-MCP/1.0.0",
**self.config.headers
},
timeout=aiohttp.ClientTimeout(total=15),
allow_redirects=True,
max_redirects=10
) as response:
if response.status != 200:
raise Exception(f"Tools list failed with status {response.status}")
tools_response = await response.json()
if "result" in tools_response and "tools" in tools_response["result"]:
return tools_response["result"]["tools"]
return []
async def _probe_jsonrpc_get(self):
"""Probe using JSON-RPC GET method with query parameters"""
try:
# Try GET with tools list
async with self.session.get(
f"{self.config.url}?method=tools/list",
headers={
"Accept": "application/json",
"User-Agent": "Klaide-FastAgent-MCP/1.0.0",
**self.config.headers
},
timeout=aiohttp.ClientTimeout(total=10),
allow_redirects=True,
max_redirects=10
) as response:
if response.status == 200:
result = await response.json()
if "tools" in result:
return result["tools"]
elif "result" in result and "tools" in result["result"]:
return result["result"]["tools"]
except Exception:
pass
return []
async def _probe_rest_api(self):
"""Probe using REST API endpoints"""
rest_endpoints = [
f"{self.config.url.rstrip('/sse')}/tools",
f"{self.config.url.rstrip('/sse')}/api/tools",
f"{self.config.url.rstrip('/sse')}/mcp/tools",
f"{self.config.url}/tools"
]
for endpoint in rest_endpoints:
try:
async with self.session.get(
endpoint,
headers={
"Accept": "application/json",
"User-Agent": "Klaide-FastAgent-MCP/1.0.0",
**self.config.headers
},
timeout=aiohttp.ClientTimeout(total=10),
allow_redirects=True,
max_redirects=10
) as response:
if response.status == 200:
result = await response.json()
if isinstance(result, list):
return result
elif "tools" in result:
return result["tools"]
except Exception:
continue
return []
async def _probe_websocket(self):
"""Probe using WebSocket connection"""
try:
# Convert HTTP URL to WebSocket URL
ws_url = self.config.url.replace('https://', 'wss://').replace('http://', 'ws://')
# This would require websockets library
# For now, just return empty list
logger.debug(f"WebSocket probe not implemented for {ws_url}")
return []
except Exception:
return []
async def call_tool(self, tool_name: str, arguments: Dict[str, Any]) -> Any:
"""Call a tool using the best available method"""
if self.client_session:
# Use fast-agent-mcp client session
try:
result = await self.client_session.call_tool(tool_name, arguments)
return result.content if hasattr(result, 'content') else result
except Exception as e:
logger.error(f"Fast-agent tool call failed: {e}")
# Fall through to manual method
# Fallback to manual tool calling
if self.session:
message = {
"jsonrpc": "2.0",
"id": int(asyncio.get_event_loop().time() * 1000),
"method": "tools/call",
"params": {
"name": tool_name,
"arguments": arguments
}
}
try:
async with self.session.post(
self.config.url,
json=message,
headers={
"Content-Type": "application/json",
"User-Agent": "Klaide-FastAgent-MCP/1.0.0",
**self.config.headers
},
timeout=aiohttp.ClientTimeout(total=self.config.sse_read_timeout),
allow_redirects=True,
max_redirects=10
) as response:
if response.status == 200:
result = await response.json()
if "result" in result:
return result["result"].get("content", [])
raise Exception(f"Tool call failed with status {response.status}")
except Exception as e:
logger.error(f"Manual tool call failed: {e}")
return [{"type": "text", "text": f"Error: {str(e)}"}]
return [{"type": "text", "text": "Error: No connection available"}]
async def close(self):
"""Close all connections"""
if self.client_session:
try:
await self.client_session.close()
except Exception:
pass
if self.session:
try:
await self.session.close()
except Exception:
pass
self.connected = False
class MCPChatbot:
def __init__(self, anthropic_api_key: str, mcp_servers: Dict[str, MCPSSEServerConfig]):
self.anthropic_client = anthropic.Anthropic(api_key=anthropic_api_key)
self.mcp_servers = mcp_servers
self.clients = {}
self.available_tools = {}
async def initialize_mcp_servers(self):
"""Initialize connections to all MCP SSE servers using fast-agent-mcp"""
for server_name, server_config in self.mcp_servers.items():
try:
logger.info(f"Connecting to MCP SSE server: {server_name}")
client = FastAgentMCPClient(server_config)
await client.connect()
self.clients[server_name] = client
self.available_tools[server_name] = client.tools
if client.connected:
logger.info(f"Successfully connected to {server_name} with {len(client.tools)} tools")
else:
logger.warning(f"Partial connection to {server_name}")
except Exception as e:
logger.error(f"Failed to connect to {server_name}: {e}")
continue
def format_tools_for_claude(self) -> List[Dict]:
"""Format tools from MCP for Claude API with enhanced context"""
claude_tools = []
for server_name, tools in self.available_tools.items():
for tool in tools:
# Enhanced tool description with server context
server_context = ""
if server_name == "burp_mcp":
server_context = " (Burp Suite - Web Security Testing)"
elif server_name == "viper_mcp":
server_context = " (Metasploit - Penetration Testing)"
tool_description = tool.get('description', f"Tool from {server_name}")
enhanced_description = f"{tool_description}{server_context}"
claude_tool = {
"name": f"{server_name}_{tool.get('name', 'unknown')}",
"description": enhanced_description,
"input_schema": tool.get('inputSchema', {
"type": "object",
"properties": {},
"required": []
}),
"server_context": {
"server_name": server_name,
"server_url": self.clients[server_name].config.url if server_name in self.clients else "",
"capabilities": self._get_server_capabilities(server_name)
}
}
claude_tools.append(claude_tool)
return claude_tools
def _get_server_capabilities(self, server_name: str) -> List[str]:
"""Get capabilities for a specific server"""
capabilities_map = {
"burp_mcp": [
"Web application security testing",
"Vulnerability scanning",
"HTTP request/response analysis",
"Spider/crawling functionality",
"Intruder attacks",
"Repeater functionality"
],
"viper_mcp": [
"Penetration testing",
"Exploit development",
"Payload generation",
"Network reconnaissance",
"Post-exploitation",
"Metasploit module execution"
]
}
return capabilities_map.get(server_name, [])
async def execute_tool(self, tool_name: str, arguments: Dict[str, Any]) -> Any:
"""Execute tool through appropriate MCP server"""
parts = tool_name.split('_', 1)
if len(parts) < 2:
raise ValueError(f"Invalid tool name format: {tool_name}")
server_name = parts[0]
actual_tool_name = parts[1]
if server_name not in self.clients:
raise ValueError(f"Server {server_name} not available")
client = self.clients[server_name]
if not client.connected:
raise ValueError(f"Server {server_name} not connected")
try:
result = await client.call_tool(actual_tool_name, arguments)
return result
except Exception as e:
logger.error(f"Error executing tool {tool_name}: {e}")
return [{"type": "text", "text": f"Error: {str(e)}"}]
async def chat(self, message: str, history: List[List[str]]) -> tuple:
"""Main chat function using messages API with tools context"""
try:
# Get available tools and their context
tools = self.format_tools_for_claude()
tools_context = await self._get_tools_context()
# Bangun system_content dan messages
system_content, messages = await self._build_messages_with_context(message, history, tools_context)
# Panggil Claude API
response = self.anthropic_client.messages.create(
model="claude-3-5-sonnet-20241022",
max_tokens=4000,
messages=messages,
tools=tools,
temperature=0.1,
system=system_content
)
# Process response
assistant_message = ""
for content in response.content:
if content.type == "text":
assistant_message += content.text
elif content.type == "tool_use":
# Execute tool
try:
tool_result = await self.execute_tool(
content.name,
content.input
)
# Format tool result
assistant_message += f"\n\nπ§ **Tool Executed**: {content.name}\n"
if isinstance(tool_result, list):
for item in tool_result:
if isinstance(item, dict) and item.get("type") == "text":
assistant_message += f"π **Result**: {item.get('text', '')}\n"
else:
assistant_message += f"π **Result**: {json.dumps(item, indent=2, ensure_ascii=False)}\n"
else:
assistant_message += f"π **Result**: {json.dumps(tool_result, indent=2, ensure_ascii=False)}\n"
except Exception as e:
assistant_message += f"\n\nβ **Tool execution failed**: {content.name}\n"
assistant_message += f"π« **Error**: {str(e)}\n"
# Update history
history.append([message, assistant_message])
return history, ""
except Exception as e:
error_msg = f"β **Error**: {str(e)}"
history.append([message, error_msg])
return history, ""
async def _build_messages_with_context(self, message: str, history: List[List[str]], tools_context: str) -> Tuple[str, List[Dict]]:
"""Build messages array with tools context integration"""
# Pisahkan system_content
system_content = f"""You are Klaide, a Kali Linux AI Desktop assistant that controls cybersecurity tools through MCP servers.
You help users perform penetration testing, vulnerability assessment, and security analysis.
{tools_context}
Instructions:
1. Analyze the user's request in the context of available MCP tools
2. Use the appropriate tools for cybersecurity tasks
3. Provide helpful guidance and explanations
4. Be specific about which Kali Linux tools or techniques to use
5. Always prioritize security and ethical hacking practices
6. When using tools, explain what you're doing and why
Available tool format: Use the tools provided in the tools list for executing commands."""
messages = []
# Tambahkan history dan pesan user seperti biasa, TANPA pesan role "system"
if history:
for user_msg, assistant_msg in history[-5:]:
messages.append({"role": "user", "content": user_msg})
if assistant_msg:
messages.append({"role": "assistant", "content": assistant_msg})
# Add current message
messages.append({"role": "user", "content": message})
return system_content, messages
async def _get_tools_context(self) -> str:
"""Get context information from all connected MCP servers"""
context_parts = []
context_parts.append("=== MCP SERVERS CONTEXT ===")
for server_name, client in self.clients.items():
if not client.connected:
continue
context_parts.append(f"\n[{server_name.upper()} SERVER]")
context_parts.append(f"URL: {client.config.url}")
context_parts.append(f"Status: Connected")
# Get tools information
tools = self.available_tools.get(server_name, [])
context_parts.append(f"Available Tools: {len(tools)}")
if tools:
context_parts.append("Tools List:")
for tool in tools:
tool_name = tool.get('name', 'unknown')
tool_desc = tool.get('description', 'No description')
context_parts.append(f" - {tool_name}: {tool_desc}")
# Add input schema info
schema = tool.get('inputSchema', {})
if schema.get('properties'):
props = list(schema['properties'].keys())
context_parts.append(f" Parameters: {', '.join(props)}")
# Get server capabilities
if server_name == "burp_mcp":
context_parts.append("Capabilities:")
context_parts.append(" - Web application security testing")
context_parts.append(" - Vulnerability scanning")
context_parts.append(" - HTTP request/response analysis")
context_parts.append(" - Burp Suite integration")
elif server_name == "viper_mcp":
context_parts.append("Capabilities:")
context_parts.append(" - Penetration testing")
context_parts.append(" - Exploit development")
context_parts.append(" - Metasploit Framework integration")
context_parts.append(" - Payload generation")
# Add system status
connected_count = sum(1 for client in self.clients.values() if client.connected)
total_tools = sum(len(tools) for tools in self.available_tools.values())
context_parts.append(f"\n[SYSTEM STATUS]")
context_parts.append(f"Connected Servers: {connected_count}/{len(self.clients)}")
context_parts.append(f"Total Available Tools: {total_tools}")
context_parts.append(f"MCP Client: Fast-Agent-MCP")
return "\n".join(context_parts)
async def _build_completion_prompt(self, message: str, history: List[List[str]], tools_context: str) -> str:
"""Build completion prompt with conversation history and tools context (deprecated - now using messages)"""
# This method is kept for reference but not used anymore
# We now use _build_messages_with_context() instead
prompt_parts = []
# System prompt
prompt_parts.append("You are Klaide, a Kali Linux AI Desktop assistant that controls cybersecurity tools through MCP servers.")
prompt_parts.append("You help users perform penetration testing, vulnerability assessment, and security analysis.")
prompt_parts.append("")
# Tools context
prompt_parts.append(tools_context)
prompt_parts.append("")
# Conversation history
if history:
prompt_parts.append("=== CONVERSATION HISTORY ===")
for user_msg, assistant_msg in history[-5:]: # Last 5 exchanges
prompt_parts.append(f"Human: {user_msg}")
prompt_parts.append(f"Assistant: {assistant_msg}")
prompt_parts.append("")
# Current message
prompt_parts.append("=== CURRENT REQUEST ===")
prompt_parts.append(f"Human: {message}")
prompt_parts.append("")
# Instructions
prompt_parts.append("=== INSTRUCTIONS ===")
prompt_parts.append("1. Analyze the user's request in the context of available MCP tools")
prompt_parts.append("2. Use the appropriate tools for cybersecurity tasks")
prompt_parts.append("3. Provide helpful cybersecurity guidance and explanations")
prompt_parts.append("4. Be specific about which Kali Linux tools or techniques to use")
prompt_parts.append("5. Always prioritize security and ethical hacking practices")
prompt_parts.append("")
prompt_parts.append("Assistant: ")
return "\n".join(prompt_parts)
async def _extract_tool_calls_from_completion(self, completion_text: str) -> List[Dict[str, Any]]:
"""Extract tool calls from completion text (deprecated - now using native tool calling)"""
# This method is kept for reference but not used anymore
# We now use Claude's native tool calling in messages API
import re
tool_calls = []
# Pattern to match TOOL_CALL[tool_name](arguments)
pattern = r'TOOL_CALL\[([^\]]+)\]\(([^)]*)\)'
matches = re.findall(pattern, completion_text)
for match in matches:
tool_name = match[0].strip()
args_str = match[1].strip()
# Parse arguments (simple JSON-like parsing)
try:
if args_str:
# Handle simple key=value pairs
arguments = {}
if '=' in args_str:
pairs = args_str.split(',')
for pair in pairs:
if '=' in pair:
key, value = pair.split('=', 1)
key = key.strip().strip('"\'')
value = value.strip().strip('"\'')
arguments[key] = value
else:
# Try to parse as JSON
arguments = json.loads(args_str) if args_str else {}
else:
arguments = {}
tool_calls.append({
'name': tool_name,
'arguments': arguments
})
except Exception as e:
logger.warning(f"Failed to parse tool arguments: {args_str}, error: {e}")
# Still add the tool call with empty arguments
tool_calls.append({
'name': tool_name,
'arguments': {}
})
return tool_calls
async def get_server_status(self) -> str:
"""Get comprehensive status of all MCP servers with enhanced context"""
status = "π‘ **Kali Linux MCP Servers Status (Fast-Agent-MCP + Enhanced Context):**\n\n"
if not self.clients:
status += "β **No servers configured**\n"
status += "Please configure at least one MCP server URL in Settings.\n"
return status
for server_name, client in self.clients.items():
status += f"## π₯οΈ **{server_name.upper()}**\n"
status += f"**URL**: `{client.config.url}`\n"
try:
if not client.connected:
status += "**Status**: β **DISCONNECTED**\n"
status += "**Connection Method**: Fast-Agent-MCP + Fallback\n"
status += "**Tools**: β οΈ No tools available\n"
status += "**Context**: Not available for enhanced context\n\n"
continue
tools = self.available_tools.get(server_name, [])
if not tools:
status += "**Status**: β οΈ **CONNECTED BUT NO TOOLS**\n"
status += "**Connection Method**: Fast-Agent-MCP (Graceful mode)\n"
status += "**Tools**: π Empty tools list\n"
status += "**Context**: Limited context for AI\n"
else:
status += f"**Status**: β
**CONNECTED & OPERATIONAL**\n"
# Determine connection method
if client.client_session:
status += "**Connection Method**: π Fast-Agent-MCP (Native)\n"
else:
status += "**Connection Method**: π Fast-Agent-MCP (Fallback)\n"
status += f"**Tools Available**: π οΈ **{len(tools)} tools**\n"
status += f"**AI Context**: β
**Full context available**\n"
# Display tools with enhanced context integration
status += "**Tools List** (Available with enhanced context):\n"
for i, tool in enumerate(tools, 1):
tool_name = tool.get('name', 'Unknown')
tool_desc = tool.get('description', 'No description available')
if len(tool_desc) > 60:
tool_desc = tool_desc[:57] + "..."
status += f" `{i:2d}.` **{tool_name}** - {tool_desc}\n"
# Add server-specific capabilities for enhanced context
capabilities = self._get_server_capabilities(server_name)
status += "**Enhanced Context Capabilities**:\n"
for cap in capabilities:
status += f" β’ {cap}\n"
# Connection health info
status += f"**Timeout**: {client.config.timeout}s\n"
status += f"**SSE Timeout**: {client.config.sse_read_timeout}s\n"
except Exception as e:
status += "**Status**: β **ERROR**\n"
status += f"**Error Details**: {str(e)}\n"
status += "**Tools**: β οΈ Unable to retrieve tools\n"
status += "**Context**: Error in enhanced context\n"
status += "\n" + "β" * 50 + "\n\n"
# Add enhanced context summary
connected_count = sum(1 for client in self.clients.values() if client.connected)
total_tools = sum(len(tools) for tools in self.available_tools.values())
status += "## π **Enhanced Context Summary**\n"
status += f"**Connected Servers**: {connected_count}/{len(self.clients)}\n"
status += f"**Total Available Tools**: {total_tools}\n"
status += f"**MCP Client**: Fast-Agent-MCP with enhanced context\n"
status += f"**AI Model**: Claude-3.5-Sonnet (Messages API with Context)\n"
# Context information
if total_tools > 0:
status += f"**Context Integration**: β
**Full MCP context available**\n"
status += f"**AI Features**:\n"
status += f" β’ Rich server context in system messages\n"
status += f" β’ Native tool calling with Claude Messages API\n"
status += f" β’ Enhanced cybersecurity guidance\n"
status += f" β’ Conversation history integration\n"
status += f" β’ Server capability awareness\n"
else:
status += f"**Context Integration**: β οΈ **Limited context**\n"
if connected_count == 0:
status += "**Overall Status**: β **NO SERVERS OPERATIONAL**\n"
status += "**Action Required**: Check server URLs and network connectivity\n"
elif connected_count == len(self.clients):
status += "**Overall Status**: β
**ALL SYSTEMS OPERATIONAL**\n"
status += "**Ready**: Klaide enhanced context mode ready for cybersecurity tasks\n"
else:
status += "**Overall Status**: β οΈ **PARTIAL CONNECTIVITY**\n"
status += "**Action**: Some servers need attention\n"
return status
async def close_all_connections(self):
"""Close all MCP connections"""
for client in self.clients.values():
await client.close()
# Global chatbot instance
chatbot = None
def create_mcp_servers_config(burp_url: str, viper_url: str) -> Dict[str, MCPSSEServerConfig]:
"""Create MCP servers configuration from URLs"""
servers = {}
if burp_url.strip():
servers["burp_mcp"] = MCPSSEServerConfig(
name="burp_mcp",
url=burp_url.strip(),
headers={},
timeout=50,
sse_read_timeout=50
)
if viper_url.strip():
servers["viper_mcp"] = MCPSSEServerConfig(
name="viper_mcp",
url=viper_url.strip(),
headers={},
timeout=50,
sse_read_timeout=50
)
return servers
async def initialize_chatbot(api_key: str, burp_url: str, viper_url: str):
"""Initialize Klaide with API key and server URLs using fast-agent-mcp"""
global chatbot
if not api_key:
return "β Please enter Anthropic API Key"
if not burp_url.strip() and not viper_url.strip():
return "β Please enter at least one MCP server URL"
try:
mcp_servers = create_mcp_servers_config(burp_url, viper_url)
chatbot = MCPChatbot(api_key, mcp_servers)
await chatbot.initialize_mcp_servers()
connected_servers = [name for name, client in chatbot.clients.items() if client.connected]
total_tools = sum(len(tools) for tools in chatbot.available_tools.values())
if connected_servers:
status_msg = f"β
Klaide successfully initialized with Fast-Agent-MCP!\n"
status_msg += f"π Connected servers: {', '.join(connected_servers)}\n"
status_msg += f"π οΈ Total tools available: {total_tools}\n"
status_msg += f"π MCP Client: Fast-Agent-MCP with fallback support\n"
# Add connection method info
for server_name, client in chatbot.clients.items():
if client.connected:
method = "Native" if client.client_session else "Fallback"
status_msg += f"π‘ {server_name}: {method} connection\n"
return status_msg
else:
return "β οΈ Klaide initialized but no servers connected. Please check your URLs."
except Exception as e:
return f"β Initialization error: {str(e)}"
async def chat_wrapper(message, history):
"""Wrapper for chat function"""
if not chatbot:
history.append([message, "β Klaide not initialized. Please enter API Key first."])
return history, ""
return await chatbot.chat(message, history)
async def get_status():
"""Get server status"""
if not chatbot:
return "β Klaide not initialized"
return await chatbot.get_server_status()
async def cleanup():
"""Cleanup function"""
global chatbot
if chatbot:
await chatbot.close_all_connections()
# Gradio Interface
def create_interface():
with gr.Blocks(title="Klaide (Kali Linux AI Desktop)", theme=gr.themes.Soft()) as demo:
gr.Markdown("# π Klaide (**Kali Linux AI Desktop**)")
gr.Markdown("Controlling Kali Linux Desktop with AI using MCP Server.")
with gr.Tab("π¬ Console"):
with gr.Row():
with gr.Column(scale=3):
chatbot_ui = gr.Chatbot(
label="Klaide Console",
height=500,
show_copy_button=True,
avatar_images=("assets/user.png", "assets/csalab.png")
)
with gr.Row():
msg = gr.Textbox(
placeholder="Ask Klaide to control your Kali Linux tools...",
label="Command Prompt",
scale=4
)
send_btn = gr.Button("Send", scale=1, variant="primary")
with gr.Column(scale=1):
gr.Markdown("### π§ Controls")
clear_btn = gr.Button("Clear Chat", variant="secondary")
gr.Markdown("### π Server Status")
status_btn = gr.Button("Refresh Status")
status_display = gr.Markdown("Status will be displayed here...")
with gr.Tab("βοΈ Settings"):
gr.Markdown("## Setup Configuration")
with gr.Row():
with gr.Column():
api_key_input = gr.Textbox(
label="Anthropic API Key",
type="password",
placeholder="sk-ant-...",
info="Required: Your Anthropic Claude API key"
)
burp_url_input = gr.Textbox(
label="Burp MCP Server URL",
placeholder="https://burp.csalab.app/sse",
value="https://burp.csalab.app/sse",
info="Optional: URL for Burp Suite MCP server"
)
viper_url_input = gr.Textbox(
label="Viper MCP Server URL",
placeholder="https://msf.csalab.app/your-id/sse",
value="https://msf.csalab.app/02b77a05348211f0/sse",
info="Optional: URL for Metasploit MCP server"
)
with gr.Row():
init_btn = gr.Button("Initialize Klaide", variant="primary", scale=2)
test_urls_btn = gr.Button("Test URLs", variant="secondary", scale=1)
init_status = gr.Textbox(
label="Klaide Status",
interactive=False,
lines=4
)
gr.Markdown("## Klaide (Kali Linux AI Desktop)")
with gr.Accordion("Advanced Settings", open=False):
gr.Markdown("### Timeout Configuration")
timeout_slider = gr.Slider(
minimum=10,
maximum=120,
value=50,
step=5,
label="Connection Timeout (seconds)",
info="Timeout for server connections and requests"
)
gr.Markdown("### Custom Headers")
custom_headers = gr.Textbox(
label="Custom Headers (JSON format)",
placeholder='{"Authorization": "Bearer token", "X-API-Key": "key"}',
info="Optional: Custom headers for server requests"
)
# Event handlers
def chat_fn(message, history):
return asyncio.run(chat_wrapper(message, history))
def init_fn(api_key, burp_url, viper_url):
return asyncio.run(initialize_chatbot(api_key, burp_url, viper_url))
def status_fn():
return asyncio.run(get_status())
async def test_urls_async(burp_url, viper_url):
"""Test server URLs connectivity with fast-agent-mcp methods"""
results = []
# Test Burp URL
if burp_url.strip():
burp_result = await test_single_url_fast_agent("Burp", burp_url.strip())
results.append(burp_result)
else:
results.append("βοΈ Burp Server: URL not provided")
# Test Viper URL
if viper_url.strip():
viper_result = await test_single_url_fast_agent("Viper", viper_url.strip())
results.append(viper_result)
else:
results.append("βοΈ Viper Server: URL not provided")
return "\n".join(results)
async def test_single_url_fast_agent(server_name, url):
"""Test a single URL using fast-agent-mcp approach"""
test_results = []
# Method 1: Try fast-agent-mcp native connection
try:
config = MCPSSEServerConfig(name=f"test_{server_name.lower()}", url=url)
test_client = FastAgentMCPClient(config)
# Quick connection test (timeout faster for testing)
config.timeout = 10
await test_client.connect()
if test_client.connected:
tool_count = len(test_client.tools)
if test_client.client_session:
test_results.append(f"β
{server_name} Server: Fast-Agent-MCP native ({tool_count} tools)")
else:
test_results.append(f"β
{server_name} Server: Fast-Agent-MCP fallback ({tool_count} tools)")
await test_client.close()
return "\n".join(test_results)
else:
test_results.append(f"β οΈ {server_name} Server: Fast-Agent-MCP failed")
await test_client.close()
except Exception as e:
test_results.append(f"β {server_name} Server: Fast-Agent-MCP error - {str(e)[:50]}...")
# Method 2: Manual SSE test
try:
connector = aiohttp.TCPConnector(limit=10, limit_per_host=5)
async with aiohttp.ClientSession(
timeout=aiohttp.ClientTimeout(total=10),
connector=connector
) as session:
# Test SSE endpoint
async with session.get(
url,
headers={
"Accept": "text/event-stream",
"User-Agent": "Klaide-FastAgent-Test/1.0.0"
},
allow_redirects=True,
max_redirects=10
) as response:
if response.status in [200, 204]:
test_results.append(f"β
{server_name} Server: SSE endpoint accessible")
elif response.status == 405:
test_results.append(f"β οΈ {server_name} Server: SSE returns 405 (will use graceful handling)")
else:
test_results.append(f"β οΈ {server_name} Server: SSE returns HTTP {response.status}")
except Exception as e:
test_results.append(f"β {server_name} Server: SSE test failed - {str(e)[:50]}...")
return "\n".join(test_results)
def test_urls_fn(burp_url, viper_url):
return asyncio.run(test_urls_async(burp_url, viper_url))
# Bind events
send_btn.click(
chat_fn,
inputs=[msg, chatbot_ui],
outputs=[chatbot_ui, msg]
)
msg.submit(
chat_fn,
inputs=[msg, chatbot_ui],
outputs=[chatbot_ui, msg]
)
clear_btn.click(
lambda: ([], ""),
outputs=[chatbot_ui, msg]
)
init_btn.click(
init_fn,
inputs=[api_key_input, burp_url_input, viper_url_input],
outputs=[init_status]
)
test_urls_btn.click(
test_urls_fn,
inputs=[burp_url_input, viper_url_input],
outputs=[init_status]
)
status_btn.click(
status_fn,
outputs=[status_display]
)
# Cleanup on app close
demo.load(None, None, None)
return demo
if __name__ == "__main__":
try:
# Create and launch interface
demo = create_interface()
demo.launch(
server_name="0.0.0.0",
server_port=7860,
share=True,
debug=True
)
finally:
# Cleanup
asyncio.run(cleanup()) |