set_power_profile
Changes the host system's power profile to match desired performance or energy-saving needs. Specify the profile name to apply.
Instructions
Set the power profile.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| profile | Yes |
Changes the host system's power profile to match desired performance or energy-saving needs. Specify the profile name to apply.
Set the power profile.
| Name | Required | Description | Default |
|---|---|---|---|
| profile | Yes |
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate this is not read-only, not idempotent, and not destructive, but the description adds no behavioral context beyond that. It does not disclose side effects, persistence, privilege requirements, or whether changing the profile affects running processes or hardware.
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 text is very concise and free of filler, which is structurally good. However, it is under-specified: a single sentence that omits essential operational details makes it less appropriate for reliable tool invocation.
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 output schema, no parameter enums, and no parameter documentation, the description is incomplete. It leaves the agent without enough information to know valid profile values, expected effects, or whether any confirmation/error handling is needed.
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 coverage is 0%, so the description must compensate, but it only restates the concept of 'profile' without defining valid values, formats, examples, or OS-specific constraints. The parameter name and title offer minimal self-evident meaning.
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 states a specific verb ('Set') and resource ('power profile'), making the core operation clear. It also implicitly differentiates from the sibling get_power_profile by indicating this is the setter counterpart. However, it does not explain what 'power profile' means or what values are accepted.
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?
There is no guidance on when to use this tool, what conditions apply, or how it relates to alternatives such as get_power_profile. The description only states the action; it does not help an agent choose this tool with confidence.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.