MCP
chart:remove
Removes a chart.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
chartId | string | yes | The chart to remove. |
Returns
| Name | Type | Required | Description |
|---|---|---|---|
chartId | string | yes | — |
removed | boolean | yes | — |
Schema
Request payload, as JSON Schema:
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Payload",
"type": "object",
"properties": {
"chartId": {
"description": "The chart to remove.",
"type": "string"
}
},
"required": [
"chartId"
]
}Response payload, as JSON Schema:
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Output",
"type": "object",
"properties": {
"chartId": {
"type": "string"
},
"removed": {
"type": "boolean"
}
},
"required": [
"chartId",
"removed"
]
}