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•384 B
import logging
import sys
from .server import mcp
__version__ = "0.1.4.dev0"
def main():
"""Run the Vizro MCP server - makes charts and dashboards available to AI assistants."""
# Configure logging to show warnings by default
logging.basicConfig(level=logging.WARNING, stream=sys.stderr)
# Run the MCP server
mcp.run()
if __name__ == "__main__":
main()