EcoFlow MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@EcoFlow MCP ServerWhat's the current battery level and solar input for my DELTA Pro?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
EcoFlow MCP Server
MCP (Model Context Protocol) server for controlling and monitoring EcoFlow Power Stations.
Features
List Devices - View all EcoFlow devices linked to your account
Device Status - Get comprehensive status including battery level, power flow, temperatures
Solar Input - Monitor solar panel power generation
AC Output Control - Enable/disable AC output with X-Boost and voltage settings
DC Output Control - Enable/disable DC (12V car port) output
Charging Settings - Configure max/min charge levels and charging power
Standby Timeouts - Set auto-off timers for device, AC, DC, and LCD
Raw Quota Access - Access all device parameters for debugging
Supported Devices
DELTA series (Delta, Delta Max, Delta Pro, Delta 2, Delta 2 Max, Delta Pro 3)
RIVER series (River, River Max, River Pro, River 2, River 2 Max, River 2 Pro)
PowerStream micro-inverter
Smart Plug
And other EcoFlow devices with API support
Setup
1. Get API Credentials
Register at EcoFlow Developer Platform
Wait for approval (can take up to a week)
Go to your profile and generate Access Key and Secret Key
2. Install Dependencies
cd /Users/timothy.schwarz/Scripts/mcp-servers/ecoflow-mcp
npm install
npm run build3. Configure MCP
Add to your ~/.claude/user-mcps.json:
{
"ecoflow": {
"type": "stdio",
"command": "node",
"args": ["/Users/timothy.schwarz/Scripts/mcp-servers/ecoflow-mcp/dist/index.js"],
"env": {
"ECOFLOW_ACCESS_KEY": "your_access_key_here",
"ECOFLOW_SECRET_KEY": "your_secret_key_here"
}
}
}Regional API
By default, the server uses https://api.ecoflow.com (US/Americas). For Europe, set:
"env": {
"ECOFLOW_ACCESS_KEY": "...",
"ECOFLOW_SECRET_KEY": "...",
"ECOFLOW_BASE_URL": "https://api-e.ecoflow.com"
}Available Tools
ecoflow_list_devices
List all EcoFlow devices linked to your account.
ecoflow_get_device_status
Get comprehensive status for a device including battery level, power input/output, and more.
serial_number(required): Device serial number
ecoflow_get_solar_input
Get solar panel input data including power, voltage, and current.
serial_number(required): Device serial number
ecoflow_set_ac_output
Enable or disable AC output on a power station.
serial_number(required): Device serial numberenabled(required): true to enable, false to disablexboost(optional): Enable X-Boost modevoltage(optional): Output voltage (110 or 220)frequency(optional): Output frequency (50 or 60 Hz)
ecoflow_set_dc_output
Enable or disable DC output (12V car port).
serial_number(required): Device serial numberenabled(required): true to enable, false to disable
ecoflow_get_charging_settings
Get current charging configuration.
serial_number(required): Device serial number
ecoflow_set_charging_settings
Configure charging parameters.
serial_number(required): Device serial numbermax_charge_soc(optional): Maximum charge level (0-100%)min_discharge_soc(optional): Minimum discharge level (0-100%)charging_watts(optional): AC charging power in watts
ecoflow_set_standby
Configure auto-standby timeouts.
serial_number(required): Device serial numberdevice_timeout(optional): Device standby timeout in minutes (0 = never)ac_timeout(optional): AC output timeout in minutesdc_timeout(optional): DC output timeout in minuteslcd_timeout(optional): LCD screen timeout in seconds
ecoflow_get_raw_quota
Get all raw device parameters (for debugging).
serial_number(required): Device serial numberfilter(optional): Filter parameters by keyword
Example Usage
> List my EcoFlow devices
> Show battery status for DELTA Pro (serial: R351...)
> Enable AC output on my DELTA 2
> Set charging limit to 80% on my power station
> Get solar panel input dataAPI Documentation
License
MIT
Available Tools
9 toolsecoflow_get_charging_settingsB
Get current charging configuration for an EcoFlow device including max/min charge levels, charging speed, and timeout settings.
| Name | Required | Description | Default |
|---|---|---|---|
| serial_number | Yes | The device serial number |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It indicates a read operation ('Get') but doesn't cover critical aspects such as authentication requirements, rate limits, error handling, or response format. For a tool with no annotation coverage, this leaves significant gaps in understanding how the tool behaves in practice.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose and includes relevant details without unnecessary words. Every part of the sentence contributes to understanding the tool's functionality, making it appropriately sized and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (a read operation with one parameter) and no annotations or output schema, the description is minimally adequate. It covers what the tool does but lacks details on behavioral traits, response format, and usage context. Without an output schema, it should ideally explain return values, which it doesn't, leaving room for improvement.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, with the single parameter 'serial_number' well-documented in the schema. The description doesn't add any parameter-specific details beyond what the schema provides, such as format examples or constraints. With high schema coverage, the baseline score of 3 is appropriate as the description doesn't compensate but also doesn't detract.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('Get') and resource ('charging configuration for an EcoFlow device'), including details about what information is retrieved (max/min charge levels, charging speed, timeout settings). It distinguishes from some siblings like 'ecoflow_set_charging_settings' by indicating read vs. write operations, but doesn't explicitly differentiate from all read-only siblings like 'ecoflow_get_device_status'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context by specifying 'current charging configuration,' suggesting it's for retrieving real-time settings rather than historical data. However, it doesn't provide explicit guidance on when to use this tool versus alternatives like 'ecoflow_get_device_status' or 'ecoflow_list_devices,' nor does it mention prerequisites or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ecoflow_get_device_statusB
Get comprehensive status for an EcoFlow device including battery level, input/output power, temperatures, and all available metrics.
| Name | Required | Description | Default |
|---|---|---|---|
| serial_number | Yes | The device serial number (e.g., R351ZCB5HG123456) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It describes the tool as a 'Get' operation, implying read-only behavior, but does not disclose critical behavioral traits such as authentication requirements, rate limits, error conditions, or what 'comprehensive status' entails in terms of response format. This leaves significant gaps for an agent to understand how to invoke it effectively.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the purpose ('Get comprehensive status') and immediately details the scope (device metrics). Every word earns its place, with no redundancy or unnecessary elaboration, making it highly concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations and no output schema, the description is incomplete for a tool that returns 'comprehensive status.' It lacks details on response structure, error handling, or behavioral constraints, which are essential for an agent to use this tool correctly. The description does not compensate for the absence of structured data, leaving significant contextual gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with the parameter 'serial_number' well-documented in the schema. The description does not add any meaning beyond what the schema provides, as it does not mention the parameter or provide additional context like format examples or usage notes. With high schema coverage, the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Get comprehensive status') and resource ('EcoFlow device'), with explicit details on what metrics are included (battery level, input/output power, temperatures, all available metrics). It distinguishes itself from siblings like ecoflow_get_solar_input or ecoflow_list_devices by focusing on overall device status rather than specific aspects or listing devices.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when needing comprehensive device metrics, but does not explicitly state when to use this tool versus alternatives like ecoflow_get_solar_input for solar-specific data or ecoflow_list_devices for device enumeration. No guidance on prerequisites or exclusions is provided, leaving usage context inferred rather than clearly defined.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ecoflow_get_raw_quotaA
Get all raw quota/parameter data from an EcoFlow device. Useful for debugging or accessing device-specific parameters not covered by other tools.
| Name | Required | Description | Default |
|---|---|---|---|
| serial_number | Yes | The device serial number | |
| filter | No | Optional filter to show only parameters containing this string (e.g., "battery", "solar", "ac") |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions the tool is for 'debugging' and accessing 'raw' data, implying it might return verbose or technical information, which adds some behavioral context. However, it lacks details on potential side effects (e.g., if it's read-only, which is implied but not stated), error handling, or rate limits, leaving gaps in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the core purpose and followed by usage context. Every sentence earns its place by providing essential information without redundancy, making it efficient and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has no annotations and no output schema, the description is somewhat complete for a read operation, covering purpose and usage. However, it lacks details on what the raw data includes (e.g., format, structure) or potential limitations, which would be helpful for an agent to interpret results. This makes it adequate but with clear gaps in context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
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 both parameters (serial_number and filter) with descriptions. The description does not add any additional meaning or examples beyond what the schema provides, such as elaborating on the filter parameter's usage. Thus, it meets the baseline of 3 where the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Get' and the resource 'all raw quota/parameter data from an EcoFlow device', making the purpose specific. It distinguishes from siblings by mentioning 'device-specific parameters not covered by other tools', which helps differentiate it from tools like ecoflow_get_device_status or ecoflow_get_solar_input that might provide more processed or specific data.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool: 'Useful for debugging or accessing device-specific parameters not covered by other tools.' This gives guidance on its primary use cases. However, it does not explicitly state when not to use it or name specific alternatives, such as preferring ecoflow_get_device_status for general status checks, which prevents a score of 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ecoflow_get_solar_inputB
Get solar panel input data for an EcoFlow device including current power, voltage, and daily energy statistics.
| Name | Required | Description | Default |
|---|---|---|---|
| serial_number | Yes | The device serial number |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool retrieves data ('Get'), implying a read-only operation, but does not specify whether it requires authentication, has rate limits, or details the response format (e.g., JSON structure). For a tool with zero annotation coverage, this leaves significant gaps in understanding its behavior and constraints.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose and includes specific data fields. There is no wasted language or redundancy, making it easy to parse and understand quickly. It effectively communicates the essential information without unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read operation with one parameter and no output schema, the description is minimally adequate. It covers what data is retrieved but lacks details on authentication, error handling, or response structure. Without annotations or an output schema, the agent might struggle with integration, though the tool's low complexity mitigates some completeness concerns.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with the single parameter 'serial_number' documented as 'The device serial number.' The description does not add any semantic details beyond this, such as format examples or validation rules. Given the high schema coverage, the baseline score of 3 is appropriate, as the schema adequately handles parameter documentation without extra value from the description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Get solar panel input data for an EcoFlow device including current power, voltage, and daily energy statistics.' It specifies the verb ('Get'), resource ('solar panel input data'), and target ('EcoFlow device'), with concrete data fields listed. However, it does not explicitly differentiate from siblings like 'ecoflow_get_device_status' or 'ecoflow_get_raw_quota', which might overlap in functionality, so it falls short of a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It does not mention prerequisites, such as device connectivity or authentication, nor does it compare to sibling tools like 'ecoflow_get_device_status' for broader status checks. Without any usage context or exclusions, the agent must infer when this tool is appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ecoflow_list_devicesB
List all EcoFlow devices linked to your account. Returns device serial numbers, names, product types, and online status.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
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 states the action ('List all EcoFlow devices') and return data ('device serial numbers, names, product types, and online status'), which covers basic functionality. However, it lacks details on error handling, authentication needs, rate limits, or pagination, which are important for a 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that efficiently conveys the tool's purpose and return data. It is front-loaded with the core action and includes no unnecessary details, making it highly concise and easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (0 parameters, no output schema, no annotations), the description is minimally adequate. It covers what the tool does and what it returns, but lacks context on authentication, error cases, or integration with siblings. For a simple list tool, this is acceptable but not comprehensive.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0 parameters with 100% coverage, so no parameter documentation is needed. The description doesn't add parameter info, which is appropriate here. A baseline of 4 is given as it correctly avoids redundancy, though a 5 would require explicit confirmation of no parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('List') and resource ('EcoFlow devices linked to your account'), making the purpose specific and understandable. It distinguishes from siblings by focusing on listing all devices rather than getting specific settings or statuses. However, it doesn't explicitly differentiate from potential overlapping tools like 'get_device_status' which might also list devices.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., account linking), compare with sibling tools (e.g., 'get_device_status' might provide similar info), or specify use cases. This leaves the agent without context for tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ecoflow_set_ac_outputB
Enable or disable AC output on an EcoFlow power station. Optionally configure X-Boost mode, output voltage, and frequency.
| Name | Required | Description | Default |
|---|---|---|---|
| serial_number | Yes | The device serial number | |
| enabled | Yes | Enable (true) or disable (false) AC output | |
| xboost | No | Enable X-Boost mode for handling loads up to 2000W (optional) | |
| voltage | No | Output voltage in volts, typically 110 or 220 (optional) | |
| frequency | No | Output frequency in Hz, typically 50 or 60 (optional) |
TDQS
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 mentions optional configuration for X-Boost, voltage, and frequency, but lacks critical details such as required permissions, whether changes are reversible, potential side effects (e.g., power interruptions), or rate limits. This is a significant gap for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose in the first clause, followed by optional features. It consists of two efficient sentences with zero wasted words, making it easy to parse and understand quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a mutation tool with no annotations and no output schema, the description is incomplete. It fails to address behavioral aspects like error handling, response format, or safety considerations, leaving the agent with insufficient context for reliable invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
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 all parameters thoroughly. The description adds minimal value by listing optional configurations (X-Boost, voltage, frequency) but does not provide additional syntax, format, or usage details beyond what the schema specifies. This meets the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Enable or disable AC output') and resource ('on an EcoFlow power station'), distinguishing it from sibling tools like ecoflow_set_dc_output (which handles DC output) and ecoflow_set_charging_settings (which manages charging). The verb+resource combination is precise and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for controlling AC output settings, but it does not explicitly state when to use this tool versus alternatives like ecoflow_set_dc_output or ecoflow_set_standby. No exclusions or prerequisites are mentioned, leaving the context somewhat open-ended.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ecoflow_set_charging_settingsC
Configure charging settings for an EcoFlow device including max charge level, min discharge level, and charging power.
| Name | Required | Description | Default |
|---|---|---|---|
| serial_number | Yes | The device serial number | |
| max_charge_soc | No | Maximum charge level percentage (0-100). Device will stop charging when this level is reached. | |
| min_discharge_soc | No | Minimum discharge level percentage (0-100). Device will stop discharging when this level is reached. | |
| charging_watts | No | AC charging power in watts. Higher values charge faster but may generate more heat. |
TDQS
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 states this is a configuration/write operation but doesn't mention critical behavioral aspects: whether changes are immediate or require device connectivity, if there are permission requirements, potential side effects (e.g., device restart), error conditions, or rate limits. For a mutation tool with zero annotation coverage, this is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose and enumerates the key parameters without unnecessary words. Every element earns its place, making it easy for an agent to quickly understand what the tool does.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a mutation tool with no annotations and no output schema, the description is incomplete. It doesn't explain what happens after configuration (e.g., success confirmation, error responses), behavioral constraints, or integration with sibling tools. Given the complexity of device configuration and the lack of structured safety/behavioral data, the description should provide more context about execution and outcomes.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already fully documents all four parameters with clear descriptions and constraints (e.g., percentage ranges 0-100, AC charging power in watts). The description adds minimal value beyond the schema by listing the same three configurable parameters mentioned in the schema descriptions. Baseline 3 is appropriate when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('configure') and resource ('charging settings for an EcoFlow device'), including specific configurable parameters (max charge level, min discharge level, charging power). It distinguishes from sibling tools like 'ecoflow_get_charging_settings' by specifying a write operation rather than a read operation. However, it doesn't explicitly differentiate from other configuration tools like 'ecoflow_set_ac_output' or 'ecoflow_set_dc_output' beyond the charging focus.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., device must be online), exclusions (e.g., not for solar settings), or comparisons to sibling tools like 'ecoflow_set_ac_output' or 'ecoflow_set_dc_output'. The agent must infer usage from the tool name and description alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ecoflow_set_dc_outputB
Enable or disable DC output (12V car port and DC5521 ports) on an EcoFlow power station.
| Name | Required | Description | Default |
|---|---|---|---|
| serial_number | Yes | The device serial number | |
| enabled | Yes | Enable (true) or disable (false) DC output |
TDQS
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 states the action ('enable or disable') but lacks critical behavioral details such as required permissions, whether changes are immediate or reversible, potential side effects (e.g., power draw implications), or error conditions. This is inadequate for a mutation tool with zero annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero waste. It is front-loaded with the core purpose and includes necessary specifics without redundancy, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given this is a mutation tool with no annotations and no output schema, the description is incomplete. It lacks information on behavioral traits (e.g., safety, side effects), response format, or error handling, which are critical for an agent to use it correctly and safely.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents both parameters. The description adds no additional meaning beyond what the schema provides (e.g., it doesn't clarify serial number format or enabled state implications). Baseline 3 is appropriate when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('enable or disable'), the resource ('DC output'), and the target device ('EcoFlow power station'), including details about which ports are affected ('12V car port and DC5521 ports'). It distinguishes from siblings like 'ecoflow_set_ac_output' by specifying DC rather than AC output.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It does not mention prerequisites (e.g., device must be powered on), exclusions, or comparisons to sibling tools like 'ecoflow_set_ac_output' or 'ecoflow_set_charging_settings' for related settings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ecoflow_set_standbyC
Configure standby/timeout settings for an EcoFlow device. Set how long before the device, AC output, DC output, or LCD screen automatically turns off.
| Name | Required | Description | Default |
|---|---|---|---|
| serial_number | Yes | The device serial number | |
| device_timeout | No | Device standby timeout in minutes. Set to 0 to disable auto-standby. | |
| ac_timeout | No | AC output standby timeout in minutes. How long before AC output turns off when not in use. | |
| dc_timeout | No | DC output standby timeout in minutes. How long before DC output turns off when not in use. | |
| lcd_timeout | No | LCD screen timeout in seconds. How long before the screen dims/turns off. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It discloses the tool configures settings (implying mutation) and lists timeout targets, but doesn't cover behavioral traits like required permissions, rate limits, idempotency, error conditions, or what happens on success/failure. For a mutation tool with zero annotation coverage, this leaves significant gaps in understanding its operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded and concise with two sentences that efficiently convey the tool's purpose and scope. Every sentence earns its place by specifying the action and targets without redundancy or unnecessary details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given a mutation tool with 5 parameters, no annotations, and no output schema, the description is incomplete. It lacks information on behavioral aspects (e.g., side effects, error handling), usage context, and expected outcomes. The high schema coverage helps with parameters, but overall context for safe and effective use is inadequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents all 5 parameters. The description adds minimal value beyond the schema by mentioning the same timeout targets (device, AC output, DC output, LCD screen) without providing additional syntax, units, or constraints. Baseline 3 is appropriate as the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Configure standby/timeout settings') and resource ('for an EcoFlow device'), specifying what gets configured (device, AC output, DC output, LCD screen). It distinguishes from siblings like ecoflow_set_ac_output or ecoflow_set_dc_output by focusing on timeout settings rather than output state, but doesn't explicitly contrast them.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives is provided. It doesn't mention prerequisites (e.g., device must be online), exclusions, or compare with sibling tools like ecoflow_set_ac_output for similar functions. The description implies usage for configuring timeouts but lacks contextual boundaries.
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.
9 tool updates
v1.0.0- First observed
ecoflow_get_charging_settings - First observed
ecoflow_get_device_status - First observed
ecoflow_get_raw_quota - First observed
ecoflow_get_solar_input - First observed
ecoflow_list_devices - First observed
ecoflow_set_ac_output - First observed
ecoflow_set_charging_settings - First observed
ecoflow_set_dc_output - First observed
ecoflow_set_standby
TDQS
Each tool has a clearly distinct purpose targeting specific aspects of EcoFlow device management. For example, ecoflow_get_device_status provides comprehensive status, while ecoflow_get_solar_input focuses specifically on solar data, and ecoflow_set_ac_output controls AC output settings. No tools appear to overlap in functionality.
All tools follow a perfect ecoflow_verb_noun pattern with consistent snake_case throughout. The naming convention clearly indicates the action (get/set/list) and the target resource (device_status, charging_settings, solar_input, etc.), making the tool set highly predictable and readable.
With 9 tools, this server is well-scoped for managing EcoFlow devices. The count is appropriate for covering key operations like listing devices, getting various statuses (device, charging, solar, raw data), and configuring outputs (AC, DC, charging, standby) without being overwhelming or insufficient.
The tool set provides excellent coverage for monitoring and controlling EcoFlow devices, including CRUD-like operations (list, get, set) for key parameters. A minor gap exists in not having tools for firmware updates or advanced diagnostics, but core workflows for status retrieval and configuration are well-covered.
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
Protocol-native energy infrastructure orchestration for AI data centers. Provides 46 MCP tools across 8 grid protocols (IEC-61850, DNP3, Modbus, OCPP, OpenADR, IEEE 2030.5, IEC 60870-5-104, ICCP) with 5 core API primitives: connect, dispatch, settle, comply, and intel. Enables AI agents to programmatically interact with substations, grid interfaces, and energy assets for real-time workload-grid coordination.
Control your Tesla - wake it, warm it up, unlock and more. Get your developer token at https://Infoseek.ai/mcp. Also requires your own Tesla developer token which is tied to your car/fleet.
Control your Tesla from your AI assistant - climate, charging, access, and security.
Model Context Protocol server for the Apideck Unified API. Connect any MCP-compatible agent framework to 100+ accounting systems, HRIS platforms, file storage providers, and more through one integration. More information https://www.apideck.com/mcp-server
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/schwarztim/ecoflow-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server