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
example.py•296 B
"""AI plot example."""
import vizro.plotly.express as px
from vizro_ai import VizroAI
vizro_ai = VizroAI()
df = px.data.gapminder()
fig = vizro_ai.plot(
df, "describe the composition of gdp in continent,and horizontal line for avg gdp", return_elements=True
)
fig.get_fig_object(df).show()