Skip to main content
Glama

get_solar_potential

Read-onlyIdempotent

Estimate solar energy production potential for a US address using NREL PVWatts data. Call this when the user asks about solar power viability, off-grid energy, or panel sizing. Returns estimated annual production and a typical installed-cost bracket for the system size you specify (default 5 kW).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
latNoLatitude of the location.
lngNoLongitude of the location.
addressNoUS street address (used for geocoding fallback).
system_size_kwNoSystem size in kilowatts (default 5).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
latitudeYesLatitude used for the calculation. Will be the resolved geocoded value if address was provided instead of lat/lng.
longitudeYesLongitude used for the calculation. Will be the resolved geocoded value if address was provided instead of lat/lng.
annual_kwhYesEstimated annual AC electricity production in kilowatt-hours, from NREL PVWatts.
cost_bracketYesTypical installed-cost range (USD) for a system of this size. Indicative only; varies by region and installer.
system_size_kwYesSystem nameplate capacity in kilowatts (echoed from the request, default 5).

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnly, openWorld, idempotent, and non-destructive behavior. The description adds useful context beyond those: it specifies the data source (NREL PVWatts), the return values (annual production and cost bracket), the system size default (5 kW), and the US-only geographic scope, enriching what annotations alone convey.

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 two sentences long, front-loads the core purpose, then covers usage triggers, return content, and default behavior. Every clause serves a purpose, and there is no redundant or filler text.

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

Completeness5/5

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

Given the annotations, output schema, and schema descriptions, the description covers all essential aspects: what it does, when to use it, what it returns, and key defaults. It is fully sufficient for an agent to select and invoke the tool correctly.

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

Parameters3/5

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

The schema already provides 100% coverage with descriptions for all four parameters. The description's only parameter-related addition is 'default 5 kW' in reference to system size, which duplicates the schema's default field. Thus, it adds minimal extra meaning, matching the baseline of 3.

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 tool's purpose with a specific verb ('Estimate') and resource ('solar energy production potential for a US address'). It also distinguishes itself from sibling land-analysis tools by focusing on solar viability and using NREL PVWatts data, making its role unmistakable.

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?

The description explicitly says 'Call this when the user asks about solar power viability, off-grid energy, or panel sizing,' which gives clear context for when to use it. However, it does not mention when not to use it or point to alternatives, so it doesn't quite meet the threshold for a 5.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.5/5.0
Disambiguation5/5

Each tool targets a clearly distinct purpose: analyze_land for full property analysis, compare_properties for batch comparison, get_land_quick_score for quick screening, get_solar_potential for solar estimates, and get_state_land_profile for state-level context. No overlap or ambiguity.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case: analyze_land, compare_properties, get_land_quick_score, get_solar_potential, get_state_land_profile. Naming is uniform and predictable.

Tool Count5/5

5 tools is well-scoped for the land analysis domain. Each tool provides a distinct, necessary function without redundancy. The count is appropriate and not excessive.

Completeness4/5

The tool set covers core workflows: full analysis, comparison, quick screening, solar potential, and state context. Minor gaps exist (e.g., water access, soil data, or zoning details) but these are not essential for typical use cases.

Resources