Skip to main content
Glama
Nolex13

viaris-mcp

by Nolex13

remove_charging_schedule

Delete a scheduled charging time window by its ID to update your EV charging plan.

Instructions

Removes a scheduled time window, given the id returned by get_charging_schedule.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesId of the window to remove.
chargerNoCharger name. Unnecessary if only one is configured.
elementNoConnector name. Unnecessary if the charger has only one.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations present, the description carries the burden and clearly states that the tool removes an existing schedule, implying a destructive change. It does not mention irreversibility or side effects, but the core behavior is transparent.

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

Conciseness5/5

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

The description is a single, focused sentence with no redundant information, making it easy to parse and act upon.

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

Completeness4/5

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

The description provides enough context to understand what the tool does and how to obtain the required id. There is no output schema, but the absence of return-value details is not critical for this simple removal action.

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

Parameters4/5

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

The schema already provides descriptions for all three parameters, and the description adds useful context that the id comes from get_charging_schedule. It does not elaborate further, but coverage is complete.

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 ('Removes a scheduled time window') and the specific resource, and references get_charging_schedule to distinguish it from adding or retrieving schedules.

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?

It explicitly instructs that the id should be obtained from get_charging_schedule, providing a clear precondition. It does not explicitly contrast with add_charging_schedule, but the action is unambiguous.

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