Skip to main content
Glama
gopisrikrishna

solarnetwork

solarnetwork-mcp

An MCP server that turns SolarNetwork solar telemetry into tools an AI agent can call.

No credentials required. It runs against SolarNetwork's public endpoints, where ~52 live solar sites publish real generation, irradiance and weather data — several of them updating to the minute, with six years of history.

What it can do

Read solar telemetry

  • Discover public nodes with no credentials, filter by timezone or liveness

  • Classify every stream on a site: site meter, inverter, irradiance, weather, ML anomaly

  • Query time series at any roll-up from five minutes to a year

  • Get true accumulated energy from meter readings rather than averaged power

  • Check whether a stream is still alive, by timestamp rather than by value

Find equipment faults, with dates

  • Detect inverter outages and pin the exact start and end day

  • Distinguish a dead device from one that is generating but not reporting power

  • Catch a device that has gone silent while its siblings keep reporting

  • Flag meter counter resets, which silently corrupt every energy total spanning them

  • Spot registry entries for hardware that has never existed

  • Estimate energy lost per fault, scaled from sibling output by each device's own capacity

Not raise false alarms

  • Detection is peer-relative, so cloud cover cannot register as a fault

  • Irradiance is used as a physical weather control where a pyranometer exists

  • Faults already running when the window opens are labelled as lower bounds, not invented start dates

  • Sites that cannot be assessed are reported as not assessed, never as healthy

Write reports people can act on

  • Prioritised work orders with plain-language cause, evidence, numbered steps, tools and sign-off criteria

  • Printable PDF field packs with tick boxes and a notes sheet

  • Markdown for pasting into a ticket, or JSON to post-process

  • Plain ASCII throughout, so nothing turns into black boxes in a PDF or a ticketing system

Related MCP server: EnergyAtIt MCP Server

What it cannot do

Worth knowing before you rely on it:

  • Sites with fewer than two inverters cannot be assessed. Peer comparison needs peers. The tool says so rather than reporting a clean result.

  • No nameplate ratings. Public nodes do not expose them, so loss figures are peer-scaled estimates, not warranty calculations.

  • Fault detection runs on daily buckets. A device silent for six hours is invisible.

  • Stream classification depends on a path convention. Sites naming streams Main or SMAInverter1 come back unclassified.

What it actually does

Without it, answering "is anything wrong at this site?" means knowing the node ID, the /datum/list endpoint, that aggregation=Day exists, that watts and wattHours are different questions, and then reading JSON.

With it, you ask:

"Is anything wrong at node 1000? If output is down, tell me whether it's weather or equipment."

and the agent discovers the site's streams, picks a date range, runs the aggregation, compares each inverter against its siblings, and answers in English. One sentence in, a diagnosis out.

The server does the parts a language model is bad at — request signing, pagination, unit semantics, knowing which of nine streams is a weather sensor. The agent does the parts it's good at — deciding what to ask and interpreting the answer.

See it working in 60 seconds

npm install && npm run build && npm run smoke

That drives every tool over the real MCP protocol against live data. No agent, no API key, no config. If it prints findings for node 1000, you're good.

Hand this to your agent

Copy the whole block below into Claude Code, Cursor, or any MCP-capable agent. It installs the server, wires itself up, proves the install works, and then runs a guided demo of every capability against live public solar sites.

Set up and demo the solarnetwork MCP server for me.

1. INSTALL
   git clone https://github.com/gopisrikrishna/solarnetwork-mcp.git
   cd solarnetwork-mcp
   npm install
   npm run build

2. VERIFY THE INSTALL
   Run: npm run verify
   This runs 28 assertions against live public solar data. No credentials needed.
   Tell me how many passed. If any fail, show me which and stop.

3. CONNECT IT
   Register the server with yourself over stdio:
     command: node
     args:    ./dist/index.js   (run from the solarnetwork-mcp directory)
   The repo ships a .mcp.json that already does this. Restart/reconnect if your
   client needs it, then confirm you can see 10 tools and list their names.

4. DEMO IT
   Work through these against real public nodes and show me what you find.
   Explain your reasoning at each step, do not just dump JSON.

   a) DISCOVERY
      Which public nodes are live in US timezones? Then: what does node 1000
      measure, and how far back does its data go?

   b) ENERGY
      How much did node 1000 generate in July 2026? Use the right tool for a
      billing-shaped question and tell me why you chose it.

   c) FAULT DETECTION  <- the interesting one
      Run an asset review on node 1000 for 2026-01-01 to 2026-09-01.
      Tell me what broke, exactly when it started and ended, and what it cost.
      There is a real 79-day inverter outage in there, and a second fault where
      a device reports 0 watts while still generating. Explain the difference
      between those two failure modes and why it matters.

   d) NOT BEING FOOLED
      Run an asset review on node 949 for July 2026. It will find nothing.
      Explain why "no faults found" does NOT mean the site is healthy here.

   e) DATA INTEGRITY
      Run an asset review on node 781 for 2026-01-01 to 2026-09-01.
      Its site meter counter reset mid-year. Show me how the tool handles it and
      what would have gone wrong without that handling.

   f) CROSS-CHECK
      Node 392 publishes the platform's own ML anomaly streams. Compare what
      get_anomalies says against what the asset review found. Do they agree?

   g) REPORT
      Generate a PDF service report for node 1000 over the same window, written
      for an on-site technician. Save it and tell me the path, how many pages,
      and summarise the priority 1 jobs.

5. WRAP UP
   Tell me in plain language: what is wrong with node 1000, how much energy has
   been lost, and what you would send a technician to do first.

Verify it yourself

Because it runs on public data, you do not have to take any of its conclusions on trust. Every finding is independently reproducible from your own machine:

npm install && npm run build && npm run verify

28 assertions against fixed historical windows on live public nodes. No credentials. Among them:

Check

Node

Expectation

Fault timeline

1000

Inverter 1 outage, exactly 2026-05-17 to 2026-08-03, 79 days

Telemetry fault

1000

Inverter 4 reporting 0 W since 2026-03-25 while still generating

Pagination

1000

A year exceeds SolarQuery's 1000-row page cap; every row is fetched

Meter integrity

781

Counter reset raised, and site energy never reported negative

Meter integrity

900

Counter reset pinpointed to 2026-06-03

Coverage honesty

949

A node with no inverters reports "not assessed", never "healthy"

Site meter choice

464

The real meter wins over a leftover /TEST/GEN/1 stub

Report output

1000

Work orders, acceptance criteria, plain ASCII only

A failure means the server regressed, or SolarNetwork restated history. Each assertion prints what it expected against what it got, so the two are easy to tell apart.

Load it into your agent

Every client wants the same three facts: run node, pass it dist/index.js, talk over stdio. Only the file location differs.

Use the absolute path to dist/index.js on your machine. Forward slashes work on Windows too.

The .mcp.json committed here uses a relative path instead, so that anyone who clones the repo gets a working server without editing anything. That only works for clients that launch the server from the project root, which Claude Code does; other clients may need the absolute form.

Claude Code

Already configured — .mcp.json is in the repo root, so a session started in this directory picks it up automatically. Just edit the path:

{
  "mcpServers": {
    "solarnetwork": {
      "command": "node",
      "args": ["/absolute/path/to/solarnetwork-mcp/dist/index.js"]
    }
  }
}

Or register it globally from anywhere:

claude mcp add solarnetwork -- node /absolute/path/to/solarnetwork-mcp/dist/index.js

Claude Desktop

Edit claude_desktop_config.json:

  • macOS~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows%APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "solarnetwork": {
      "command": "node",
      "args": ["/absolute/path/to/solarnetwork-mcp/dist/index.js"]
    }
  }
}

Restart the app. A tools icon appears in the message box.

Cursor

.cursor/mcp.json in your project, or ~/.cursor/mcp.json for every project. Same mcpServers block as above.

Windsurf

~/.codeium/windsurf/mcp_config.json. Same mcpServers block.

VS Code (Copilot agent mode)

.vscode/mcp.json — note the key is servers, not mcpServers:

{
  "servers": {
    "solarnetwork": {
      "type": "stdio",
      "command": "node",
      "args": ["/absolute/path/to/solarnetwork-mcp/dist/index.js"]
    }
  }
}

Zed

In settings.json, under context_servers:

{
  "context_servers": {
    "solarnetwork": {
      "command": { "path": "node", "args": ["/absolute/path/to/dist/index.js"] }
    }
  }
}

Anything else

Any MCP client can launch it over stdio:

node /absolute/path/to/solarnetwork-mcp/dist/index.js

To drive it from code, scripts/smoke.mjs is a complete worked example using the official TypeScript SDK.

Checking it loaded

Ask your agent: "What solar tools do you have?" You should see ten. If not, the usual causes are a relative path, a missing npm run build, or the client not being restarted.

The tools

Discovery

Tool

Answers

list_public_nodes

"What nodes can I even look at?"

list_sources

"What does this node measure?"

get_latest

"What's happening right now?"

Data

Tool

Answers

query_datum

"Show me output over this period"

get_energy

"How many kWh did it actually generate?"

Analysis

Tool

Answers

asset_review

"What broke, when did it start, and what did it cost?"

diagnose_site

"Is anything wrong right now, weather or equipment?"

compare_fleet

"Which of my sites needs attention first?"

get_anomalies

"What does the platform's own ML detector say?"

Reporting

Tool

Answers

create_service_report

"Give me a work order I can hand to a technician"

Things to ask it

Start here — these are real, live nodes:

Orientation

Which public SolarNetwork nodes are live in US timezones?

What does node 1000 measure, and how far back does its data go?

Right now

What's node 892 generating right now, and what's the weather there?

Node 892 carries a weather sensor and a pyranometer, so the agent gets temperature, cloud cover and irradiance alongside output.

Diagnosis — the interesting ones

Is anything wrong at node 1000?

Node 892 lists six inverters but I see no generation. What's going on?

Fleet

Rank nodes 880, 884, 953, 964, 976, 987 and 1000 by output last week. Which should I look at first?

Multi-step, where the chaining shows

Find a live US node with at least four inverters and irradiance data, then diagnose it for the last two weeks.

What you get back

Real output from diagnose_site on node 1000:

[high] reporting-gap   /0145/S1/G1/GEN/101, /102, /103
       Registered on this node but returned no data for the window. That is a
       reporting or comms outage rather than a performance problem, so the
       device may well be generating.

[low]  inconsistent-instrumentation   /0145/S1/G1/INV/4
       Reports 0 W, but its `wh` field is non-zero (peak 16508), so it is moving
       energy. This device populates energy fields only, unlike its peers, so
       power-based comparison would wrongly read it as dead.

That second finding is the point of the whole project. INV/4 reads 0 W while its three siblings produce 400–700 W, which looks exactly like a dead inverter — and an earlier version of this tool said so. It isn't dead: its meter accumulated 826 kWh that month. Inverters at one site use different reporting conventions. A health check keyed on watts alone would page someone about a working inverter every night.

Your own nodes

Set two environment variables and the server switches from the public /pub endpoints to authenticated /sec ones. The tool surface is unchanged:

SN_TOKEN_ID=... SN_TOKEN_SECRET=... node dist/index.js

Auth is SolarNetwork's SNWS2 scheme — HMAC-SHA256 over a canonicalised request with a date-scoped key. It's implemented but untested; I have no token pair to verify against.

How it works

Three files, ~900 lines total:

The tool descriptions are the real interface. An agent only chains list_sourcesquery_datum correctly if the descriptions say when to reach for each one. Getting that wording right mattered more to whether this works than any of the data handling.

Limits

  • Node metadata is empty on public nodes, so there's no nameplate capacity and therefore no capacity-normalised comparison. compare_fleet ranks raw output and says so — a big site will outrank a small healthy one.

  • list_public_nodes reads a point-in-time scan (data/nodes.json), not a live listing. Call list_sources to confirm before relying on a node.

  • No caching. Repeated agent calls re-hit the API.

  • No unit tests. scripts/smoke.mjs is a live probe, not a test suite.

  • SolarQuery silently coerces fine-grained aggregation to hourly for ranges over ~7 days. query_datum passes your aggregation through as-is, so long ranges return coarser data than requested.

More detail: USAGE.md for worked examples and an effort comparison, DATA.md for the full inventory of what's public vs credential-gated.

License

Proprietary / All Rights Reserved. See LICENSE for details.

Available Tools

10 tools
asset_reviewReview a site as an asset managerA

Walk a site's day-by-day record and return every fault as a dated event: what broke, when it started, when it ended, how long it ran and how much energy it cost. Use this for 'what is wrong with this site', 'when did it start', 'how much has this cost us' and anything feeding a work order. Prefer this over diagnose_site for any window longer than a few days: diagnose_site reduces each source to one window mean, so a fault that started or ended part way through is invisible to it. Detection is peer-relative, so bad weather never raises an event.

ParametersJSON Schema
NameRequiredDescriptionDefault
nodeIdYesSolarNetwork node ID
endDateYesExclusive end, YYYY-MM-DD
startDateYesInclusive start, YYYY-MM-DD

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral disclosure burden, and it does so well: it reveals that detection is peer-relative, that bad weather never raises an event, and that each fault is returned as a dated event with duration and energy cost. It does not cover pagination, limits, or permission requirements, but the core behavioral model is clearly disclosed.

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 dense but efficient: it front-loads the core behavior, then gives use cases, then the competing-tool routing, then a key detection caveat. Every sentence earns its place and none are redundant.

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?

For a read-style tool with no output schema and no annotations, the description explains the return value sufficiently by listing what each fault event contains. It also handles the main ambiguity around long windows and weather-related false positives. Minor gaps remain around output format details and explicit read-only labeling, but the description is largely complete for correct invocation.

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?

Schema description coverage is 100% for all three parameters, and the schema already explains nodeId, startDate, and endDate semantics. The description adds context about the 'day-by-day record' and the window-length preference, but does not add substantial parameter-level meaning beyond the schema, so a baseline 3 is appropriate.

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 states a specific action and output: 'Walk a site's day-by-day record and return every fault as a dated event' with clear event fields. It also explicitly distinguishes itself from diagnose_site by explaining what diagnose_site cannot see, so an agent can tell them apart.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit use cases: 'what is wrong with this site', 'when did it start', 'how much has this cost us', and work-order feeds. It also gives a direct routing rule: 'Prefer this over diagnose_site for any window longer than a few days' with a concrete reason.

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

compare_fleetCompare sites across the fleetA

Compare several nodes over the same date range and rank them by output, in a single query. Use for portfolio-level questions: which sites are underperforming, how does this site compare to the rest, which node should I look at first.

ParametersJSON Schema
NameRequiredDescriptionDefault
endDateYesExclusive end, YYYY-MM-DD
nodeIdsYesNode IDs to compare, at least two
startDateYesInclusive start, YYYY-MM-DD
aggregationNoRoll-up periodDay

TDQS

A3.9/5.0
Behavior3/5

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

With no annotations supplied, the description carries the full behavioral burden. It does disclose that the tool ranks nodes by output, but it doesn't explicitly state the operation is read-only or describe any side effects, rate limits, or edge-case behaviors (e.g., what happens when nodes have missing data). The core ranking behavior is clear, but additional transparency would be valuable.

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, front-loaded with the primary action and scope, followed by concrete use cases. Every sentence contributes purpose and context without redundancy. It is appropriately concise.

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

Completeness3/5

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

There is no output schema, so the description should explain what the tool returns. It mentions 'rank them by output' but doesn't specify the format (e.g., a table, list, metric) or how the aggregation parameter affects the ranking. It also doesn't mention limits on the number of nodes or date-range constraints beyond the schema. For a comparison tool, more detail on the output shape is needed.

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?

Schema coverage is 100%, so all parameters have description in the schema. The tool description adds the context of a shared date range and ranking by output, but it doesn't add syntax, format, or interaction details beyond the schema. This matches the baseline for full schema coverage.

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 states a specific verb ('Compare', 'rank') and resource ('several nodes'), with a clear scope (same date range, single query). It distinguishes itself from likely siblings like query_datum or get_energy by emphasizing cross-node comparison and ranking, so an agent can immediately tell what this tool does.

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 offers concrete use cases ('which sites are underperforming, how does this site compare to the rest, which node should I look at first') that clarify when to use it. However, it doesn't explicitly state when NOT to use it or name alternative tools for single-node queries, so it's clear on the 'when' but not on the 'when-not'.

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

create_service_reportCreate a field service reportA

Turn a site's faults into a service request that a person can act on: prioritised jobs, each with what happened in plain language, the evidence behind it, numbered steps for site, the tools needed and explicit sign-off criteria. Runs asset_review internally, so call this directly rather than reviewing first. Use format 'pdf' for a printable field pack, 'markdown' to paste into a ticket, or 'json' to post-process.

ParametersJSON Schema
NameRequiredDescriptionDefault
formatNoOutput formatpdf
nodeIdYesSolarNetwork node ID
endDateYesExclusive end, YYYY-MM-DD
raisedOnNoDate on the report, YYYY-MM-DD. Defaults to the window end.
referenceNoYour own service request number. One is generated if omitted.
startDateYesInclusive start, YYYY-MM-DD
outputPathNoWhere to write the PDF. Required when format is 'pdf'.

TDQS

A4.2/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It discloses that the tool runs asset_review internally and that a reference is auto-generated if omitted, which are valuable behaviors. However, it does not clarify whether the tool is a pure read/compute or writes persistent data, despite an outputPath parameter that implies file writing. It also omits any error or side-effect details. This partial transparency earns a 3.

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 three-sentence description is compact and front-loaded. The first sentence states the core purpose and output content; the second covers the internal-call routing; the third explains format semantics. Every sentence earns its place with no fluff or redundancy.

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?

With no annotations and no output schema, the description must be self-sufficient. It covers the report’s structure, the internal call, and format interpretations. It does not describe error scenarios or return values, but given the tool is a generator that writes files, the basics are covered. The presence of an outputPath parameter and its schema description already conveys the write behavior, so the description is adequately complete.

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?

Schema coverage is 100%, so the baseline is 3. The description adds value by explaining the meaning of each format beyond the enum: 'pdf' for a printable field pack, 'markdown' to paste into a ticket, and 'json' to post-process. This directly helps the agent pick the right format. No other parameters are elaborated in the description, but their schema descriptions are sufficient.

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 opens with a clear, specific purpose: 'Turn a site's faults into a service request that a person can act on' and enumerates the report's constituents (prioritised jobs, plain-language account, evidence, steps, tools, sign-off criteria). It also names a sibling (asset_review) and explicitly tells the agent to call this tool instead, making the differentiation explicit.

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 gives direct usage guidance: 'Runs asset_review internally, so call this directly rather than reviewing first' tells the agent when to prefer this over the sibling. It also explains the three format options with their intended use cases (pdf for printable pack, markdown for ticketing, json for post-processing). It does not spell out exclusions for other siblings, but the context is clear enough.

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

diagnose_siteDiagnose site faultsA

Diagnose a solar site over a date range by comparing each inverter against its own siblings, with irradiance as the weather control. Distinguishes a dead inverter (reporting but producing zero) from a reporting gap (producing but not reporting) from ordinary bad weather (everything down, irradiance also down). This is the right tool for 'is anything wrong at this site', 'which inverter is broken', or 'why did output drop'.

ParametersJSON Schema
NameRequiredDescriptionDefault
nodeIdYesSolarNetwork node ID
endDateYesExclusive end, YYYY-MM-DD
startDateYesInclusive start, YYYY-MM-DD
aggregationNoRoll-up periodDay

TDQS

A4.4/5.0
Behavior5/5

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

With no annotations, the description fully carries the behavioral burden. It reveals the comparison logic, the weather-control mechanism (irradiance), and the three mutually exclusive diagnoses (dead inverter, reporting gap, bad weather). This is rich, actionable context far beyond a typical one-liner.

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?

Three sentences with zero fluff. The methodology is front-loaded, followed by the fault distinctions, then the practical usage examples. Every sentence contributes to the agent's understanding.

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 covers the core algorithm and use cases, which is the essential knowledge for calling this diagnostic tool. However, with no output schema present, it does not explicitly state what the tool returns or mention any prerequisites beyond the parameters. The missing return format is a minor gap.

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?

Schema coverage is 100% with clear parameter descriptions (nodeId, inclusive/exclusive dates, aggregation enum). The description only references 'a date range' and does not add semantic meaning beyond the schema, so the baseline 3 applies.

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 uses a specific verb ('Diagnose') with a precise resource ('solar site') and method ('comparing each inverter against its own siblings, with irradiance as the weather control'). It further enumerates three distinct fault outcomes, clearly differentiating it from generic tools like get_anomalies or compare_fleet.

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 provides explicit when-to-use scenarios: 'is anything wrong at this site', 'which inverter is broken', or 'why did output drop'. It does not, however, name alternatives or state when not to use the tool, so it stops short of a full 5.

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

get_anomaliesRead anomaly detection outputA

Read the output of the platform's own ML anomaly detector for a node, where one is published. Each reading carries the predicted value, the actual value, the error between them, the irradiance at the time and an ANOMALY/NOMINAL status. Use this when you want the platform's own verdict rather than computing one yourself, and to cross-check what diagnose_site concluded. Node 392 is a public example.

ParametersJSON Schema
NameRequiredDescriptionDefault
nodeIdYesSolarNetwork node ID
endDateNoExclusive end, YYYY-MM-DD
startDateNoInclusive start, YYYY-MM-DD. Omit for the latest readings

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It clearly indicates this is a read operation, scoped to nodes where an anomaly output is published, and enumerates the contents of each reading (predicted value, actual value, error, irradiance, ANOMALY/NOMINAL status). It does not state what happens when no output is published or whether results are ordered, which are minor gaps for a read-only tool.

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?

Three sentences, each adding value: the first defines the operation and scope, the second specifies the returned fields, and the third gives usage context plus a concrete example. There is no padding, and the essential information is front-loaded.

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?

For a simple three-parameter read tool with no output schema, the description adequately covers the return contents and gives a sibling reference for cross-checking. It could additionally state the behavior when no anomaly output is published, but overall the description is sufficient for an agent to call the tool correctly with the schema's help.

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?

Schema coverage is 100%, with descriptions for nodeId, startDate, and endDate already present. The tool description adds context about the readings but does not enhance parameter-level meaning beyond the schema, such as date range interpretation or the effect of omitting startDate. Baseline 3 is appropriate because the schema already documents the parameters.

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 opens with a specific verb and resource: "Read the output of the platform's own ML anomaly detector for a node." It clearly distinguishes this from siblings by emphasizing the platform's own ML verdict, and later contrasts it with computing one's own verdict and with diagnose_site. An agent can tell exactly what this tool does and what it does not do.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to use the tool: "Use this when you want the platform's own verdict rather than computing one yourself, and to cross-check what diagnose_site concluded." It names the alternative (diagnose_site) and provides a decision rule, plus a concrete public example node for testing. This is strong routing guidance.

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

get_energyGet accumulated energyA

Get true accumulated energy (watt-hours) between two dates from meter readings, rather than averaging instantaneous power. Use this for 'how much did this site generate' questions, and for anything reporting- or billing-shaped, because averaging watts loses accuracy on accumulating properties.

ParametersJSON Schema
NameRequiredDescriptionDefault
nodeIdsYesNode IDs
sourceIdsNoRestrict to these source IDs; omit for all sources
readingTypeNoDifference is the usual choice for energy over a periodDifference
localEndDateYesExclusive end in node-local time, YYYY-MM-DDTHH:mm
localStartDateYesInclusive start in node-local time, YYYY-MM-DDTHH:mm

TDQS

A4/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It discloses that this tool computes from meter readings rather than averaging instantaneous power, which is a key behavioral trait. However, it does not describe the response shape, how missing readings are handled, or whether results are summed across multiple node IDs. For a no-annotation tool, this is adequate but with room to add more behavioral context.

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?

Two sentences, no wasted words. The core purpose and key differentiator are front-loaded, and the usage guidance follows naturally. Every sentence earns its place.

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?

For a tool with 5 parameters, no output schema, and no annotations, the description gives purpose, usage context, and a critical behavioral distinction. It does not explain the return value, but for a reporting-oriented tool, this is a notable gap. Still, the description is strong enough that an agent can decide when to use it and what to expect conceptually.

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 input schema covers all parameters with descriptions (100% coverage), so the baseline is 3. The description adds a little semantic value by explaining why 'Difference' is the usual reading type, which helps an agent understand the default parameter. However, it does not go into detail about the date format or node-local time, which is already in the schema.

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 states a specific action ('Get true accumulated energy') with a precise resource ('meter readings') and unit ('watt-hours'). It explicitly contrasts with averaging instantaneous power, distinguishing it from siblings like get_latest and query_datum without needing to open their schemas.

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 when to use it: for 'how much did this site generate' questions and reporting/billing-shaped needs. It also gives a reason (averaging loses accuracy). It does not explicitly name alternative tools to use instead, but the context signals and sibling list imply there are other query tools, so the guidance is clear but not fully exclusionary.

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

get_latestGet latest readingsA

Get the most recent reading for each source on a node, including weather and irradiance where available. Use this for 'what is happening right now' and to check whether a stream is still live. Note that generation is legitimately zero at night.

ParametersJSON Schema
NameRequiredDescriptionDefault
nodeIdYesSolarNetwork node ID
sourceIdsNoRestrict to these source IDs; omit for all sources

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the behavioral disclosure burden. It adds useful interpretation beyond the schema by noting that generation is legitimately zero at night and that weather/irradiance are included where available. This helps the agent avoid misreading valid nighttime data as a failure.

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?

Three short sentences, each earning its place: the first states the core behavior, the second gives the primary use case, and the third provides a critical interpretation caveat. It is front-loaded and free of filler.

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?

For a simple read-style tool with two well-documented parameters and no output schema, the description is largely complete. It explains purpose, when to use it, and a key data-interpretation nuance. A small gap is that it does not describe what happens when no recent reading exists or how to interpret missing sources, but this is minor.

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?

Schema description coverage is 100%, so the schema already documents nodeId and sourceIds. The description reinforces the per-source aggregation concept and the optional restriction to specific source IDs, but does not need to add substantial parameter-level detail.

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 retrieves the most recent reading per source on a node, including weather and irradiance when available. This distinguishes it from siblings like query_datum or get_energy by focusing on latest status rather than history or aggregates.

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 tells the agent when to use it: for 'what is happening right now' and for checking if a stream is still live. It does not explicitly name alternatives or exclusion criteria, but the context is clear enough for correct selection.

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

list_public_nodesList known public nodesA

List SolarNetwork nodes known to be readable without credentials, from a catalogue built by scanning node IDs 1-5000. Use this first when you do not have a node ID in hand, since there is no public endpoint that enumerates nodes. Filter to live nodes to avoid ones that stopped reporting years ago.

ParametersJSON Schema
NameRequiredDescriptionDefault
liveOnlyNoOnly nodes with data since 2026-08-01
timeZoneNoFilter by IANA timezone substring, e.g. 'America'

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden. It discloses that nodes are readable without credentials, that the catalogue comes from scanning IDs 1-5000, and that dead nodes should be filtered to avoid stale data. It does not mention output format or rate limits, but these are less critical for a simple list operation.

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?

Three sentences: purpose, usage guidance, and filtering tip. Every sentence earns its place, with the core behavior front-loaded and no wasted words.

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?

Given two optional parameters and no output schema, the description adequately covers purpose, scope, and usage. It could mention what fields are returned or how results are ordered, but an agent can invoke the tool correctly with the information provided.

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?

Schema description coverage is 100%, so the baseline is 3. The description adds a rationale for the liveOnly parameter ('avoid ones that stopped reporting years ago') but does not add new meaning for either parameter beyond what the schema already provides.

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 lists SolarNetwork nodes that are publicly readable, sourced from a catalogue built by scanning node IDs 1-5000. This is a specific verb+resource and differentiates it from sibling tools that operate on known nodes or sources.

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 instructs to use this tool first when no node ID is available, and explains why (no public endpoint that enumerates nodes). It also advises filtering to live nodes to avoid stale entries, but it does not name alternative tools for when a node ID is already known.

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

list_sourcesList node sourcesA

List the streams reporting on a SolarNetwork node, classified by what they measure: GEN (site generation meter), INV (individual inverter), PYR (pyranometer, i.e. solar irradiance), WEA (weather). Also returns the node's data window and timezone. Always start here when you do not already know what a node measures.

ParametersJSON Schema
NameRequiredDescriptionDefault
nodeIdYesSolarNetwork node ID

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It clearly indicates a read-only listing operation ('List'), explains the classification logic, and additionally discloses that it returns the node's data window and timezone, which is beyond a simple listing. It does not mention error conditions or rate limits, but for a simple retrieval tool this is acceptable.

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, both of which are purposeful. The first sentence front-loads the core function and classification details, the second provides a usage directive. There is no fluff or redundancy, and each sentence earns its place.

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?

For a tool with a single parameter, no output schema, and no annotations, the description covers all necessary aspects: what it does, what it returns (streams classification, data window, timezone), and when to use it. Nothing essential is missing for an agent to correctly invoke this tool.

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 description coverage is 100% (nodeId is fully described as 'SolarNetwork node ID'). The tool description does not add any additional meaning to the parameter beyond what the schema already provides. Per the baseline rule, when schema coverage is high, a score of 3 is appropriate.

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 states a specific verb ('List') and resource ('streams reporting on a SolarNetwork node') and details the classification categories (GEN, INV, PYR, WEA). This clearly distinguishes it from sibling tools like get_latest or query_datum, which focus on data retrieval rather than listing structural information about a node.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit usage guidance: 'Always start here when you do not already know what a node measures.' This tells the agent the exact trigger condition for using this tool and implies that if the node's measurements are already known, other tools may be more suitable. While it doesn't name specific alternatives, the contextual cue is strong and actionable.

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

query_datumQuery time-series datumA

Query time-series data over a date range, rolled up by an aggregation period. Accepts multiple nodes at once. Returns one series per source with mean power, total energy and mean irradiance. Use Day for week-to-month questions, Hour or FifteenMinute to inspect a single day's shape, and Month for year-scale trends. Note that watts is averaged power; for true energy totals use get_energy instead.

ParametersJSON Schema
NameRequiredDescriptionDefault
endDateYesExclusive end, YYYY-MM-DD
nodeIdsYesOne or more SolarNetwork node IDs
sourceIdsNoRestrict to these source IDs; omit for all sources
startDateYesInclusive start, YYYY-MM-DD
aggregationNoRoll-up periodDay

TDQS

A4.7/5.0
Behavior4/5

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

Since no annotations are provided, the description carries the burden of behavioral disclosure. It discloses that 'watts' is averaged power (not total) and points to get_energy for true totals, which is a meaningful behavioral nuance. However, it doesn't mention whether the tool is read-only or any potential side effects, though as a query that is implied. It could also disclose behavior around multiple sources or response size, but the key nuance is covered.

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 concise, front-loaded with the core purpose, and every sentence adds value. It packs essential information into three sentences with no fluff, and the alternative tool reference is clearly positioned at the end. Structure is effective for quick agent parsing.

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?

For a query tool with 5 parameters all documented, no output schema (so the description's summary of returned metrics is essential), and guidance on parameter selection, the description is complete. It covers what the tool does, how to use it, and where to go for alternative functionality. There are no missing pieces an agent would need to call it correctly.

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 covers all parameters with descriptions (100% coverage), so baseline is 3. The description adds value by providing aggregation selection guidance (Day, Hour, Month) that goes beyond the enum values, effectively helping the agent choose the right parameter value. It also clarifies the semantics of the 'watts' output, which is related to the data returned. This elevates it above the baseline.

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 queries time-series data over a date range with aggregation, accepts multiple nodes, and returns specific metrics (mean power, total energy, mean irradiance). It uses specific verbs and resources, and distinguishes itself from get_energy by clarifying the difference between averaged power and true energy totals.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides explicit guidance on when to use different aggregation periods (Day for week-to-month, Hour/FifteenMinute for single-day shape, Month for year trends) and explicitly names an alternative tool (get_energy) for energy totals, telling the agent when NOT to use this tool.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 10 tool updatesv0.3.0
    • First observedasset_review
    • First observedcompare_fleet
    • First observedcreate_service_report
    • First observeddiagnose_site
    • First observedget_anomalies
    • First observedget_energy
    • First observedget_latest
    • First observedlist_public_nodes
    • First observedlist_sources
    • First observedquery_datum

TDQS

A4.2/5.0

Scored across 10 tools

Disambiguation4/5

Most tools target clearly distinct purposes: discovery, latest reading, aggregated time-series, true energy, quick diagnosis, fleet ranking, ML verdicts, event history, reporting, and node discovery. Two close pairs (query_datum/get_energy and diagnose_site/asset_review) overlap enough that agents could pick the wrong one, but the descriptions explicitly steer usage, keeping misselection risk low.

Naming Consistency4/5

Names are uniformly lowercase snake_case and mostly follow a verb_noun pattern (list_sources, get_energy, diagnose_site, create_service_report). Minor deviations: get_latest uses an adjective as the object, and asset_review inverts the verb_noun order, but all names remain easily parseable and predictable.

Tool Count5/5

Ten tools is squarely in the well-scoped range for a solar monitoring domain. Each tool earns its place: two for discovery, one for live status, two for historical data access, three for the diagnostics cluster, one for fleet comparison, and one for report generation. No redundant or filler tools.

Completeness4/5

The set covers the full analysis lifecycle: discovering public nodes, enumerating sources, reading current state, querying both averaged and true energy, diagnosing faults at both quick and event-level granularity, cross-checking with ML output, comparing sites, and producing serviceready reports. Minor gaps include no raw non-aggregated datum access and no site metadata endpoint, but core workflows have no dead ends.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    An MCP server that enables AI assistants to look up solar permitting authorities, estimate solar production via PVWatts, and retrieve irradiance data. It streamlines the creation of solar-aware workflows by integrating industry-standard APIs like NREL.
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    Connects AI agents to energy infrastructure with 30+ tools for managing sites, assets, dispatch, settlements, compliance, and carbon tracking.
    34
    23 npm
    1
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    Open-source MCP servers exposing US solar data (production, resource, economics, market, forecast) as agent-accessible tools with a consistent data envelope.
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Provides free energy intelligence APIs for AI agents: solar production estimates, US clean-energy incentives by ZIP, home Energy Node Scores, contractor search, and consented installer routing.
    MIT