Reservoirs
reservoirsReservoir storage snapshots.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| station_id | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | ||
| items | No |
reservoirsReservoir storage snapshots.
| Name | Required | Description | Default |
|---|---|---|---|
| station_id | No |
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | ||
| items | No |
Changes observed during successful MCP inspections.
Output schema / additionalPropertiesRemoved value: -trueOutput schema / properties / bodyRemoved value: -{
- "description": "Raw text response from API",
- "type": "string"
-}Output schema / properties / countAdded value: +{
+ "type": "number"
+}Output schema / properties / formatRemoved value: -{
- "description": "Indicates response is plain text (non-JSON)",
- "enum": [
- "text"
- ],
- "type": "string"
-}Output schema / properties / itemsAdded value: +{
+ "items": {
+ "properties": {
+ "SENSOR_NUM": {
+ "type": "number"
+ },
+ "dataFlag": {
+ "type": "string"
+ },
+ "date": {
+ "type": "string"
+ },
+ "durCode": {
+ "type": "string"
+ },
+ "obsDate": {
+ "type": "string"
+ },
+ "sensorType": {
+ "type": "string"
+ },
+ "stationId": {
+ "type": "string"
+ },
+ "units": {
+ "type": "string"
+ },
+ "value": {
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+}Input schema / examplesAdded value: +[
+ {
+ "station_id": "SHA"
+ },
+ {
+ "station_id": "ORO"
+ }
+]Output schema / (root)Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "description": "Response from CDEC API containing reservoir storage snapshots or raw text",
+ "properties": {
+ "body": {
+ "description": "Raw text response from API",
+ "type": "string"
+ },
+ "format": {
+ "description": "Indicates response is plain text (non-JSON)",
+ "enum": [
+ "text"
+ ],
+ "type": "string"
+ }
+ },
+ "type": "object"
+}Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds no behavioral context beyond the annotations—it does not mention what 'snapshots' means (e.g., time range, latest only, historical series), pagination, or data freshness. It does not contradict the annotations, but it also adds no value beyond them.
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 extremely short—three words—so it is concise, but it is under-specified rather than efficiently informative. It front-loads nothing useful because the phrase 'Reservoir storage snapshots' is a fragment, not a complete sentence with a verb.
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?
The tool has one optional parameter, an output schema, and rich annotations, so the baseline burden is moderate. However, the description fails to explain what the tool returns, how station_id filters results, or what 'snapshots' implies about time. An agent cannot confidently select or invoke this tool based on the description alone.
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?
Schema description coverage is 0%, so the description must compensate for the undocumented station_id parameter. It does not. The description never mentions station_id, what values it accepts, or how it affects results. The examples in the schema (SHA, ORO) hint at station codes, but the description itself provides no parameter meaning.
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?
The description 'Reservoir storage snapshots.' is a noun phrase, not a verb+resource statement. It vaguely suggests the tool returns reservoir storage data but does not state what action it performs (e.g., 'Get', 'List', 'Retrieve') or what the output represents. It does not distinguish itself from siblings like daily_data, hourly_data, or station_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?
No guidance is given on when to use this tool versus alternatives. The sibling list includes data-related tools (daily_data, hourly_data, latest, event_data) and station_info, but the description does not explain what makes reservoirs the right choice or when to prefer another tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.