We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/M507/AI-SOC-Agent'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•329 B
"""
AI Controller for SamiGPT.
This module provides a web-based controller for managing and executing agent commands,
with support for multiple concurrent sessions and scheduled auto-runs.
"""
from .agent_executor import AgentExecutor
from .session_manager import SessionManager
__all__ = ["AgentExecutor", "SessionManager"]