Skip to main content
Glama

⚡ eskomsepush-mcp

EskomSePush 的模型上下文协议 (MCP) 服务器 — 为 Claude 和任何兼容 MCP 的 AI 客户端带来南非实时限电数据。

由南非开发者为南非人打造。用通俗语言向 Claude 询问限电情况。


功能介绍

工具

描述

计划

get_status

当前全国限电阶段(Eskom + 开普敦)

免费 ✅

check_allowance

查看今天剩余的 API 调用次数

免费 ✅

search_areas

通过郊区或城市名称查找您的区域 ID

付费 💳

get_area_schedule

您所在区域的即将发生的事件和完整时间表

付费 💳

get_areas_nearby

通过 GPS 坐标发现区域

付费 💳

示例提示词

  • “我们现在处于哪个阶段?” → 适用于免费计划

  • “我今天还剩多少次 API 调用?” → 适用于免费计划

  • “斯泰伦博斯今晚有限电吗?” → 适用于付费计划

  • “向我展示桑顿本周的限电时间表” → 适用于付费计划

  • “查找我附近的限电区域” (使用 GPS) → 适用于付费计划


Related MCP server: Energy Grid MCP Server

先决条件

API 计划要求

EskomSePush 运营着分层 API。免费层级在区域查找端点上返回 HTTP 410 Gone — 这些端点需要付费订阅。此 MCP 服务器无论计划如何都会公开完整的工具界面;不受支持的工具将向客户端显示 410 作为明确的错误。

计划

费用

可用功能

免费

$0 通过 Gumroad

get_status, check_allowance

付费

每年 $55 起

全部 5 个工具


安装

选项 1 — npx (推荐)

npx eskomsepush-mcp

选项 2 — 克隆并构建

git clone https://github.com/zukhanyendiki9-code/eskomsepush-mcp.git
cd eskomsepush-mcp
npm install
npm run build

配置

Claude Desktop

添加到您的 claude_desktop_config.json

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "eskomsepush": {
      "command": "npx",
      "args": ["-y", "eskomsepush-mcp"],
      "env": {
        "ESP_API_TOKEN": "your-api-token-here"
      }
    }
  }
}

Claude Code

claude mcp add eskomsepush -e ESP_API_TOKEN=your-token -- npx -y eskomsepush-mcp

Cursor / Windsurf

{
  "mcpServers": {
    "eskomsepush": {
      "command": "npx",
      "args": ["-y", "eskomsepush-mcp"],
      "env": {
        "ESP_API_TOKEN": "your-api-token-here"
      }
    }
  }
}

开发

npm run build        # compile TypeScript
npm run dev          # watch mode
npm run inspect      # open MCP Inspector UI for testing

提示: 在开发过程中向任何工具传递 test: true — 它会返回模拟数据,且不会计入您的每日配额。

测试状态

工具

在免费计划上测试

get_status

check_allowance

search_areas

⚠️ 需要付费计划

get_area_schedule

⚠️ 需要付费计划

get_areas_nearby

⚠️ 需要付费计划

如果您使用的是付费计划并测试了任何付费层级工具,请提交 issue 或 PR 以确认其行为。


API 配额

计划

每日调用次数

免费

50

付费

更高限制

使用 check_allowance 工具监控您的使用情况。在构建时使用 test: true


贡献

欢迎提交 PR。如果您是南非人,并且有让此工具更有用的想法,请提交 issue。

加入 ZATech Slack 中的 #eskomsepush 频道,参与 EskomSePush 开发者社区。


许可证

MIT © Zukanye Ndiki

Available Tools

5 tools
check_allowanceA

Check how many EskomSePush API calls you have remaining today. Free tier allows 50 calls per day.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.3/5.0
Behavior4/5

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

No annotations are provided, so the description carries full burden. It discloses that the operation is a read (check) and mentions the free tier limit (50 calls per day). It does not detail side effects because none exist.

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, front-loaded with key action and resource, and no wasted words. Highly concise.

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 no parameters, no output schema, and simple purpose, the description provides all necessary context, including the free tier limit. No critical gaps.

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 input schema has zero parameters, so baseline is 4. The description inherently says no parameters are needed, which is 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 clearly states the tool checks remaining API calls, using a specific verb ('Check') and resource ('allowance'). It distinguishes from siblings like get_area_schedule which deal with area data.

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

Usage Guidelines3/5

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

The description implies usage for checking quota but does not explicitly state when to use or when not to use alternatives. Since no sibling tool serves this purpose, the context is clear but lacks direct guidance.

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

get_area_scheduleA

Get the upcoming load shedding schedule and events for a specific area. Requires an area ID — use search_areas first if you don't have one.

ParametersJSON Schema
NameRequiredDescriptionDefault
area_idYesThe area ID from search_areas (e.g. 'eskmo-7-stellenboschstellenboschwestern-cape')
testNoUse test data (does not count against your quota)

TDQS

A4.1/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 implies a read-only operation but does not disclose behaviors such as authentication requirements, rate limits, or error handling. The description is adequate but lacks depth for a tool with no annotations.

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 first sentence states the purpose, the second provides usage guidance. Highly concise and front-loaded.

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?

No output schema exists, so the description should explain return values. It mentions 'schedule and events' but lacks specifics on the structure or content of the response. Parameter documentation is sufficient, but the return format is vague.

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 both parameters having descriptions. The description adds context by reiterating the prerequisite and tool to obtain area_id, but adds little beyond the schema's own descriptions. 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 clearly states the tool retrieves 'upcoming load shedding schedule and events for a specific area', uses a specific verb ('Get'), and distinguishes from siblings by directing users to search_areas for obtaining an area ID.

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 the prerequisite (area ID) and directs users to search_areas if they lack one, providing clear when-to-use and alternative guidance.

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

get_areas_nearbyA

Find load shedding areas near a GPS location. Useful when you know coordinates but not the area name.

ParametersJSON Schema
NameRequiredDescriptionDefault
latYesLatitude (e.g. -33.9249 for Cape Town)
lonYesLongitude (e.g. 18.4241 for Cape Town)
testNoUse test data (does not count against your quota)

TDQS

A3.8/5.0
Behavior2/5

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

No annotations are provided, so the description should disclose behavioral traits. It only describes the purpose and does not mention safety, side effects, authentication, or return behavior, leaving the agent uninformed about safe usage.

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 a single front-loaded sentence with no filler words. Every part contributes to understanding the tool's purpose.

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 the simple tool (3 params, no output schema), the description adequately explains the primary use case and differentiates from siblings. It does not explain return values, but that is acceptable without an output schema.

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 3 parameters with descriptions (100% coverage). The description does not add new meaning beyond the schema, so a baseline 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 uses a specific verb 'Find' and resource 'load shedding areas', with clear context 'near a GPS location'. It effectively distinguishes from sibling 'search_areas', which presumably searches by area name.

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 states it is useful when coordinates are known but not the area name, suggesting use over 'search_areas'. However, it does not explicitly mention when not to use or list alternatives.

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

get_statusB

Get the current national load shedding stage for both Eskom and Cape Town. Use this to find out what stage we are on right now.

ParametersJSON Schema
NameRequiredDescriptionDefault
testNoUse test data instead of live data (does not count against your quota)

TDQS

B3.4/5.0
Behavior2/5

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

No annotations are provided, so the description must convey behavioral traits. It only states the tool fetches current status and mentions the test parameter (which is documented in the schema). It does not disclose update frequency, caching, or quota details beyond the test parameter's note.

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 purpose, and contains no unnecessary information. Every part is useful.

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

Completeness2/5

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

The tool has an optional test parameter and no output schema. The description does not explain the return format (e.g., numeric stage, object with details), which is necessary for an agent to interpret the result 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 coverage is 100% for the single parameter (test), and its description is already in the schema. The tool description adds no additional meaning to the parameter, meeting the baseline expectation.

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 current national load shedding stage for both Eskom and Cape Town. It uses a specific verb 'get' and identifies the resource, which distinguishes it from sibling tools like get_area_schedule or get_areas_nearby.

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

Usage Guidelines3/5

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

The description implies usage for finding the current stage, but does not explicitly mention when not to use this tool or provide alternatives. The sibling tools exist for area-specific or schedule lookups, but no guidance is given.

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

search_areasA

Search for load shedding areas by name or suburb. Returns area IDs you can use with get_area_schedule. Always search first if you don't have an area ID.

ParametersJSON Schema
NameRequiredDescriptionDefault
textYesSuburb, city, or area name to search for (e.g. 'Stellenbosch', 'Sandton', 'Ballito')
testNoUse test data (does not count against your quota)

TDQS

A4.3/5.0
Behavior4/5

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

Without annotations, the description carries the full burden. It discloses that the tool returns area IDs (non-destructive read), and mentions the test parameter behavior. This is good, but could elaborate on error handling or rate limits.

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, front-loaded with purpose, and no unnecessary words. Every sentence provides value: the first defines what it does, the second gives usage guidance.

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 no output schema and full parameter coverage, the description is complete. It explains the input format, output utility, and usage context. An agent can correctly invoke this tool without ambiguity.

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% and both parameter descriptions are clear. The description adds no extra meaning beyond what the schema provides for parameters, but it does explain the output purpose.

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: searching for load shedding areas by name or suburb. It specifies the output (area IDs) and how it connects to another tool (get_area_schedule). This distinguishes it from siblings like get_areas_nearby or get_area_schedule.

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 advises 'Always search first if you don't have an area ID,' which tells the agent when to use this tool. It implies that if an area ID is known, use get_area_schedule instead. This provides clear context but could be more explicit about alternatives.

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. Dates show when Glama detected each change.

  1. 5 tool updatesv0.1.0
    • First observedcheck_allowance
    • First observedget_area_schedule
    • First observedget_areas_nearby
    • First observedget_status
    • First observedsearch_areas

TDQS

A4.2/5.0
Disambiguation5/5

Each tool serves a distinct purpose: API allowance, area schedule, nearby areas, national status, and area search. No overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (check_allowance, get_area_schedule, get_areas_nearby, get_status, search_areas), using snake_case throughout.

Tool Count5/5

Five tools is well-scoped for the EskomSePush API domain, covering the essential operations without feeling thin or overloaded.

Completeness5/5

The tool set covers all core functionality of the EskomSePush API: status, area lookup, schedule, nearby search, and API quota checking. No obvious gaps.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    Provides real-time access to Israeli emergency alerts from the official Pikud Haoref (Home Front Command) API. Enables AI assistants to check current alerts, retrieve alert history with intelligent city filtering, and monitor emergency notifications including rocket alerts, aerial intrusions, and earthquakes.
    5
    -
  • A
    license
    A
    quality
    D
    maintenance
    Provides real-time electricity grid data including CO2 intensity, power mix, and wholesale prices, plus optimal green time windows for energy-intensive AI tasks. Supports UK, Germany, and global regions with optional API keys.
    9
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI agents to access and analyze Spanish electricity consumption data via the Datadis API, providing tools for supply management, consumption analysis, anomaly detection, and executive reporting.
    MIT
  • A
    license
    Not graded
    quality
    F
    maintenance
    Enables querying of real-time and forecast UK carbon intensity data from National Grid ESO, allowing AI agents to retrieve carbon emissions by region and time.
    3
    MIT

Latest Blog Posts

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/zukhanyendiki9-code/eskomsepush-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server