Skip to main content
Glama

Kali SSE MCP Command Executor

by liyue1000
task_chain.py617 B
""" 任务链 实现智能化的任务链和自动化触发。 """ import logging from typing import Dict, Any, List, Optional logger = logging.getLogger(__name__) class TaskChain: """任务链""" def __init__(self): """初始化任务链""" logger.info("任务链初始化完成") def create_chain(self, initial_command: str) -> List[str]: """ 创建任务链 Args: initial_command: 初始命令 Returns: 任务链命令列表 """ # 简单实现 return [initial_command]

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