Skip to main content
Glama
kevintalbert

Cloudera Data Visualization MCP Server

by kevintalbert

create_dashboard

Group one or more chart visuals into a single visible dashboard in the CDV workspace, making standalone charts viewable and organized.

Instructions

Create a CDV dashboard that groups one or more chart visuals into a single visible view.

Use this tool after create_smart_visual() to make charts visible in the CDV workspace UI. Chart visuals created via the API are standalone artifacts; they only appear in the CDV workspace when placed inside a dashboard.

visual_ids: list of visual IDs to include (in display order, left-to-right, top-to-bottom). Record these IDs — deleting the dashboard also deletes all linked visuals. workspace_id: the workspace where the dashboard will be created (from list_workspaces()). dataset_id: optional — the primary dataset for the dashboard (for global filter context). Use the dataset_id shared by most of the included visuals. description: optional short description shown in the workspace.

Visuals are automatically tiled in a 2-column grid. Odd trailing visuals span full width.

WARNING: Deleting a dashboard (via delete_visual) permanently deletes all linked chart visuals. Always save the visual IDs before deleting a dashboard.

Returns the new dashboard's id and url.

Example workflow:

  1. call list_workspaces() → choose workspace_id

  2. call list_datasets() → confirm dataset_id with the user

  3. call create_smart_visual() × N → collect visual_ids

  4. call create_dashboard(title="My Dashboard", workspace_id=4, visual_ids=[131, 132, 133], dataset_id=12)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYes
workspace_idYes
visual_idsYes
dataset_idNo
descriptionNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It discloses that chart visuals are standalone artifacts until placed in a dashboard, warns that deleting a dashboard deletes all linked visuals, and explains automatic tiling behavior. This is comprehensive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is reasonably concise with a clear structure: main purpose, usage guidance, parameter details, warnings, and an example workflow. It could be slightly shorter, but every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of the tool and the presence of an output schema, the description provides complete context: preconditions (create_smart_visual first), warnings, parameter semantics, and return value. The example workflow ties it all together.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0%, so description must compensate. It explains each parameter in detail: visual_ids (order, recording IDs), workspace_id (source), dataset_id (optional, use shared), description (optional). Adds critical context like 'record these IDs' for deletion warning.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Create a CDV dashboard') and the resource ('groups one or more chart visuals into a single visible view'). It distinguishes from sibling tools like create_smart_visual by explicitly stating it should be used after that tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to use the tool ('after create_smart_visual()') and provides an example workflow. While it doesn't explicitly mention when not to use it, the guidance is clear and contextual.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

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/kevintalbert/CDV-MCP-Server'

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