Skip to main content
Glama
helpers.py722 B
# Copyright Amethyst Reese # Licensed under the MIT license import logging import sys def setup_logger(): log = logging.getLogger("") log.setLevel(logging.INFO) logging.addLevelName(logging.ERROR, "E") logging.addLevelName(logging.WARNING, "W") logging.addLevelName(logging.INFO, "I") logging.addLevelName(logging.DEBUG, "V") date_fmt = r"%H:%M:%S" verbose_fmt = ( "%(asctime)s,%(msecs)d %(levelname)s " "%(module)s:%(funcName)s():%(lineno)d " "%(message)s" ) handler = logging.StreamHandler(sys.stdout) handler.setLevel(logging.INFO) handler.setFormatter(logging.Formatter(verbose_fmt, date_fmt)) log.addHandler(handler) return log

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/rblake2320/sectional-mcp-panel'

If you have feedback or need assistance with the MCP directory API, please join our Discord server