get-chart
Retrieve specific charts by ID using the Model Context Protocol server, enabling secure access and management of PI Dashboard resources for AI assistants.
Instructions
Get a chart by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Chart ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Chart ID",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}