get_chart_status
Retrieve the status of a chart generation request using the provided request ID. Facilitates monitoring and managing chart visualization tasks on the MCP Chart Server.
Instructions
Check the status of a chart generation request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
requestId | Yes | The request ID returned from generate_chart |
Input Schema (JSON Schema)
{
"properties": {
"requestId": {
"description": "The request ID returned from generate_chart",
"type": "string"
}
},
"required": [
"requestId"
],
"type": "object"
}