We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/litmusautomation/litmus-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import logging
import ssl
logger = logging.getLogger(__name__)
NATS_SOURCE = "10.30.50.1"
NATS_PORT = "4222"
MCP_PORT = 8000
DEFAULT_TIMEOUT = 600
def ssl_config():
"""Configure SSL context for NATS connections"""
ssl_ctx = ssl.create_default_context()
ssl_ctx.check_hostname = False
ssl_ctx.verify_mode = ssl.CERT_NONE
return ssl_ctx