We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jasondsmith72/CWM-API-Gateway-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
api_gateway_server.py•481 B
#!/usr/bin/env python3
"""
ConnectWise API Gateway MCP Server - Main Entry Point
This script is the entry point for the ConnectWise API Gateway MCP server.
It imports and runs the actual server implementation.
"""
import sys
import os
# Add the current directory to the module search path
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
# Import the main function from the server module
from api_gateway.server import main
if __name__ == "__main__":
main()