We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nexus-aissam/mcp-local'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•497 B
"""
Services module for MCP Local
This module contains business logic services that handle core functionality
like backup management, edit history tracking, and file operations.
"""
from .backup_service import BackupService, backup_service
from .history_service import HistoryService, history_service
from .file_service import FileService, file_service
__all__ = [
"BackupService",
"backup_service",
"HistoryService",
"history_service",
"FileService",
"file_service"
]