Skip to main content
Glama

Kali SSE MCP Command Executor

by liyue1000
strategy_tree.py639 B
""" 策略树 实现智能化的渗透测试策略决策树。 """ import logging from typing import Dict, Any, List, Optional logger = logging.getLogger(__name__) class StrategyTree: """策略树""" def __init__(self): """初始化策略树""" logger.info("策略树初始化完成") def get_strategy(self, context: Dict[str, Any]) -> List[str]: """ 获取策略建议 Args: context: 上下文信息 Returns: 策略命令列表 """ # 简单实现 return ["nmap -sS target", "nikto -h target"]

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/liyue1000/kali_sse'

If you have feedback or need assistance with the MCP directory API, please join our Discord server