scau-electricity-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SCAU_DB_ID | No | Upstream meter database ID. | 9853 |
| SCAU_ROOM_ID | Yes | Electricity account room ID. | |
| SCAU_BASE_URL | No | Upstream service URL. | http://cz.scau.edu.cn |
| SCAU_ROOM_NAME | Yes | Electricity account room name. | |
| SCAU_ELECTRICITY_PRICE | No | Electricity price in CNY per kWh. | 0.63 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| extensions | {
"io.modelcontextprotocol/ui": {}
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_daily_energyB | 读取指定日期范围的用电量; 起止日期均为 YYYY-MM-DD (含首尾)。 |
| get_balanceA | 读取当前电费余额、余额刷新时间和电表在线状态。 |
| get_lifetime_energyA | 读取电表自上线以来截至当前日期的累计总用电量。 |
| get_electricity_summaryA | 读取日期范围用电量、电费、累计用电量和当前余额 (含首尾)。 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
get_daily_energy and get_electricity_summary both cover date-range electricity usage, but the summary tool explicitly bundles fees, lifetime usage, and balance, making its purpose distinct. The other tools are clearly separated by their specific query targets.
All tool names follow a consistent get_<descriptive_noun> pattern, such as get_daily_energy and get_lifetime_energy. There are no mixed conventions or vague verbs.
Four tools is well-scoped for a read-only electricity meter server. Each tool either serves a specific query or provides a combined summary without unnecessary bloat.
The set covers daily usage, lifetime usage, current balance, and a combined summary, which is sufficient for typical electricity monitoring. A standalone fee breakdown or current power reading could be added, but agents will not encounter significant dead ends.