We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mckinsey/vizro'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•323 B
import logging
import os
from dotenv import load_dotenv
load_dotenv()
from ._vizro_ai import VizroAI
__all__ = ["VizroAI"]
__version__ = "0.3.9.dev0"
# TODO: I think this collides with the VIZRO_LOG_LEVEL setting, as basicConfig can only be set once
logging.basicConfig(level=os.getenv("VIZRO_AI_LOG_LEVEL", "INFO"))