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
cursor_agent.py•288 B
#!/usr/bin/env python3
"""
CLI entry point for cursor-agent command.
This script provides a command-line interface for executing agent commands
and starting the web controller.
"""
import sys
from src.ai_controller.cli.main import main
if __name__ == "__main__":
sys.exit(main())