get_monitor_data
Retrieve server monitoring data for a specified time range. Use startTime and endTime to fetch metrics from 1Panel.
Instructions
Get monitor data
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| endTime | No | ||
| startTime | No |
Retrieve server monitoring data for a specified time range. Use startTime and endTime to fetch metrics from 1Panel.
Get monitor data
| Name | Required | Description | Default |
|---|---|---|---|
| endTime | No | ||
| startTime | No |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full behavioral burden, yet it discloses nothing beyond the action. It does not say whether the call is read-only, what time range semantics apply, whether results are paginated, or what the response contains.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single short sentence, but its brevity comes from under-specification rather than efficiency. It is front-loaded yet conveys almost no useful information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a data-retrieval tool with two undocumented time parameters, no annotations, and no output schema, the description is completely inadequate. It omits what data is returned, over what period, and how the results should be interpreted.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Both parameters (startTime, endTime) have 0% schema description coverage, and the description adds no meaning, format, or constraints for them. An agent cannot tell whether these are timestamps, Unix epochs, or date strings, which directly affects correct invocation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
It states a verb (get) and a resource (monitor data), so the basic action is identifiable, but 'monitor data' is vague and gives no scope. It does not distinguish this tool from siblings like get_system_monitor, get_monitor_setting, or get_dashboard_current_info.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives such as get_system_monitor or get_dashboard_current_info. There are no prerequisites, no exclusions, and no context about the scenarios it serves.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.