We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Yenn503/noctis-ai-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/usr/bin/env python3
"""
NoctisAI Server
===============
Core server for NoctisAI services.
"""
import asyncio
import logging
from typing import Dict, Any
class NoctisServer:
"""NoctisAI core server."""
def __init__(self):
"""Initialize NoctisAI server."""
self.logger = logging.getLogger(__name__)
self.status = "initialized"
async def start(self):
"""Start the NoctisAI server."""
self.logger.info("🌙 NoctisAI server starting...")
self.status = "running"
return True
async def stop(self):
"""Stop the NoctisAI server."""
self.logger.info("🌙 NoctisAI server stopping...")
self.status = "stopped"
return True
def get_status(self) -> Dict[str, Any]:
"""Get server status."""
return {
"status": self.status,
"service": "noctis-ai",
"version": "1.0.0"
}