We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Lillard01/chatExcel-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•384 B
"""Services module for ChatExcel MCP Server.
This module contains business logic services that handle specific
functionalities like Excel processing, code execution, and file operations.
"""
from .excel_service import ExcelService
from .code_executor import CodeExecutor
from .file_service import FileService
__all__ = [
'ExcelService',
'CodeExecutor',
'FileService'
]