com um clique
monday-chart-visualization
Render pie charts, bar charts, battery/progress widgets, and interactive tables from Monday.com board data.
Menu
Render pie charts, bar charts, battery/progress widgets, and interactive tables from Monday.com board data.
Navigate the Monday.com GraphQL API with schema introspection, query building, pagination patterns, complexity budgets, and the all_monday_api escape hatch.
Aggregate, filter, and analyze Monday.com board data for reporting, summaries, and decision-making.
Create, configure, manage, duplicate, archive, and delete Monday.com boards including columns, groups, views, and permissions.
Deep reference for all Monday.com column types including value formats, creation settings, and common patterns for status, timeline, people, formula, mirror, and more.
Create dashboards, add widgets, configure chart types, and connect boards to build reporting views in Monday.com.
Create, read, and append content to Monday Docs; manage version history and doc structure within workspaces.
| name | monday-chart-visualization |
| description | Render pie charts, bar charts, battery/progress widgets, and interactive tables from Monday.com board data. |
| standards-version | 1.10.0 |
pie, bar, battery, or tableget_board_info to identify column IDs and types for the target board.board_insights or get_board_items_page to gather the data to visualize.show-chart for pie and bar chartsshow-battery for progress/battery indicatorsshow-table for interactive tabular viewsUser: Show me a pie chart of task statuses on board 9876543210.
Agent:
1. get_board_info(boardId: "9876543210") to find status column ID
2. board_insights(boardId: "9876543210", question: "Count of items by status")
3. show-chart(chartType: "pie", data: [{"label": "Done", "value": 15}, {"label": "Working on it", "value": 8}, {"label": "Stuck", "value": 3}])
User: What's the sprint completion percentage?
Agent:
1. board_insights(boardId: "...", question: "Percentage of items with status Done")
2. show-battery(value: 65, label: "Sprint Completion")
| Tool | When to use |
|---|---|
show-chart | Render pie or bar charts from aggregated data |
show-battery | Render battery/progress indicators (percentage-based) |
show-table | Render interactive board data tables |
board_insights | Aggregate data before charting |
get_board_items_page | Get raw item data for custom visualizations |
get_board_info | Identify columns and data types for chart axis mapping |
show-chart expects pre-aggregated data -- aggregate with board_insights first, don't pass raw items