energy-mcp
Server Quality Checklist
Latest release: v0.1.0
- Disambiguation5/5
Each tool serves a distinct purpose: listing regions, retrieving hourly/daily/peak demand, comparing across regions, and correlating demand with weather. No functional overlap.
Naming Consistency5/5All six tool names follow a consistent verb_noun pattern with snake_case: list_regions, query_demand, daily_demand, peak_demand, compare_regions, demand_vs_weather. Naming is predictable and clear.
Tool Count5/5With 6 tools, the server is well-scoped for its purpose – covering region discovery, multiple demand granularities, inter-region comparison, and weather integration. No bloat or deficiency.
Completeness4/5Core demand querying workflows are fully supported. A minor gap is the lack of a raw hourly multi-region query (compare_regions only returns averages/peaks). Overall, the surface is thorough for typical use cases.
Average 4.4/5 across 6 of 6 tools scored. Lowest: 3.8/5.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 3 commits in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI status not available
This repository is licensed under MIT License.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully carries the burden of behavioral disclosure. It states that the tool returns a single timestamp and demand value, which is clear. However, it does not cover edge cases (e.g., no data in range, invalid region), error handling, or any mutation aspects. For a simple read-only query, this is adequate but not thorough.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: one purpose sentence followed by a parameter list. Every sentence is necessary and there is no fluff. The key information is front-loaded in the first sentence.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simplicity of the tool (3 string parameters, no output schema, no annotations), the description covers purpose, parameters, and return value. It is complete enough for an agent to use correctly. Missing details like error handling or behaviour when no data exists are minor gaps for such a straightforward query.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description must explain parameters. It does: region is a 'balancing authority code', start and end are 'inclusive start/end date' with format 'YYYY-MM-DD'. This adds meaningful context beyond the schema's plain string type. However, it could be improved by providing examples or a list of valid region codes.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'Find' and identifies the resource as 'single highest-demand hour', with clear scope of 'one region over a date range'. It also mentions the return values (timestamp and demand in MWh). This clearly distinguishes it from sibling tools like query_demand (general data) and daily_demand (per-day peaks).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. There is no mention of when it is appropriate, when not to use it, or how it compares to sibling tools like query_demand, daily_demand, or compare_regions. The context of 'one region' is stated but not contrasted with multi-region tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description does not disclose behavioral traits such as data aggregation details, performance implications for many regions, or any side effects. Since no annotations are provided, the description carries the full burden but only provides basic usage info.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, with a clear purpose and example, followed by parameter details. The example is helpful, though the 'Args' section could be integrated more seamlessly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given there is an output schema and sibling tools exist, the description adequately distinguishes the tool and explains inputs. It could be more complete by mentioning that the output includes both average and peak metrics, or by noting that region codes can be obtained via list_regions.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description explains the start and end parameters with date format and inclusiveness, and clarifies the optional regions parameter defaults to all. However, schema coverage is 0%, so the description compensates partially but does not specify accepted region codes or error handling for invalid inputs.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description states it compares average and peak demand across regions over a date range, with a specific example of use, clearly distinguishing it from siblings like peak_demand or daily_demand.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides an example question to indicate when to use the tool, but does not explicitly state when not to use it or mention alternative tools for single-region queries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so description carries full burden. It states the output includes average, peak, and minimum MWh, likely aggregated daily. However, it does not disclose whether the tool is read-only, whether it handles time zones, or what happens if data is missing for a date range. These gaps limit transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences plus a parameter list, all relevant. It front-loads the purpose and usage recommendation. The parameter list is typical for Google-style docstrings but adds a bit of vertical space. No wasted sentences.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 3 simple string parameters, an output schema exists (presumably documenting return fields), and no nested objects, the description is largely complete. It provides purpose, usage, and parameter formats. Missing details like valid region codes or date range limits are minor given the output schema's presumed coverage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description must compensate. It explains region as a balancing authority code, start and end as inclusive dates with 'YYYY-MM-DD' format. This adds significant meaning beyond the bare schema property titles. However, it does not specify valid region codes or constraints on date range length.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns daily demand statistics (average, peak, minimum MWh) for a region over a date range. It distinguishes itself from the sibling query_demand by explicitly recommending use for ranges longer than a few days.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines5/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit guidance on when to use this tool over query_demand ('for ranges longer than a few days') and lists three parameters with format hints. No exclusions or alternatives are elaborated beyond query_demand, but the recommendation is specific and actionable.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears full responsibility for transparency. It discloses the method ('using the NOAA weather station nearest that region's main load zone'), the output structure (one row per day, average demand MWh, max/min temp C), and the join logic. It does not mention potential limitations like missing data or time zone handling, but the core behavior is well explained.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured: a lead sentence explaining the purpose, followed by a bullet-like Args list. Every sentence adds value, and there is no redundancy. The key information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (3 required parameters, output schema exists), the description is complete. It explains the input format, the join logic, and the output structure (one row per day, demand and temperature). The presence of an output schema means the full return format is already defined, so the description's summary is sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description provides clear, actionable semantics for all three parameters. It explains region as 'Balancing authority code', start and end as 'Inclusive start date, YYYY-MM-DD' and 'Inclusive end date, YYYY-MM-DD'. This adds significant value beyond the schema, which only has titles. With 0% schema description coverage, the description fully compensates.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: joining daily average demand against daily temperature for a region to reveal the demand-temperature relationship. It uses a specific verb ('join') and resource ('demand vs weather') and distinguishes itself from sibling tools like query_demand, daily_demand, and compare_regions by focusing on the combined analysis.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains the tool's use case (revealing heating and cooling load relationships) but does not explicitly state when to avoid it or name alternatives. However, the context (sibling tools) and the description's wording imply that this tool is for combined demand-weather analysis, which is a distinct purpose among the siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries the burden. It clearly indicates a read operation (listing), no side effects mentioned but context implies safe discovery. Could be more explicit about read-only nature, but adequate for a listing 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/5Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences: first explains output, second provides usage guidance. Front-loaded, no wasted words, each sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter listing tool with an output schema, the description tells what is returned (balancing authorities, row counts, date ranges) and when to use it. Complete for the agent to understand and invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist, and schema coverage is 100% trivially. Description does not need to add parameter info. Baseline 4 is appropriate as no value beyond schema is necessary.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool lists balancing authorities with row counts and date ranges. Distinguishes from siblings by specifying the output content (row counts, date ranges) and by positioning it as a discovery tool to be called first.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines5/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says 'Call this first to see what you can query,' providing a clear when-to-use instruction and implying it is a prerequisite for other tools like query_demand or daily_demand.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Since no annotations exist, the description carries full burden. It discloses sorting behavior ('Returns hourly rows ordered by time'), the default limit meaning (168 = one week of hours), and the effect of using long ranges (prefer daily_demand). It does not mention pagination behavior, whether the limit is a hard cap or default, or what happens if range exceeds limit, but the essential behavioral traits are adequately covered given the tool's simplicity.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise at under 70 words, front-loaded with the core purpose and unit (MWh), then uses a structured Args list for parameters, followed by behavior and usage guidance. Every sentence serves a distinct purpose, and there is no redundancy or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 4 parameters (3 required, 0 enums, 0% schema coverage) and an output schema, the description appropriately covers input semantics, behavior (ordered hourly rows), and usage guidance with sibling reference. With no annotations, it compensates well. The output schema presumably describes return fields, so the description's lack of explicit return format is acceptable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It provides clear, helpful semantics for each parameter: region meaning (Balancing authority code with examples), start/end format ('YYYY-MM-DD') with 'inclusive' clarified, and limit meaning (max rows, default 168 = one week of hours). This adds substantial value beyond the schema labels (e.g., 'Region', 'Start', 'End', 'Limit').
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states the tool returns hourly electricity demand (MWh) for one region over a date range, using a specific verb 'Return' and identifying the resource (demand data), region, and output unit (MWh). It also distinguishes itself from siblings like daily_demand and peak_demand by mentioning hourly data and the limit default of 168 rows (one week of hours), and directly points to daily_demand as an alternative for long ranges.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines5/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear when-to-use guidance: 'For long ranges prefer daily_demand', explicitly naming the sibling alternative. It also defines the purpose (hourly data for one region) implicitly telling the agent not to use this for multiple regions or aggregated summaries (compare_regions, peak_demand). The Args docstring reinforces required parameters and their formats.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/visethchapman/energy-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server