Trigger a Lucky DDNS sync
lucky_sync_ddnsTrigger an immediate DDNS update for a specified task. Resolve stale IP records by forcing a sync now.
Instructions
Force one DDNS task to update now.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes |
lucky_sync_ddnsTrigger an immediate DDNS update for a specified task. Resolve stale IP records by forcing a sync now.
Force one DDNS task to update now.
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes |
Changes observed during successful MCP inspections.
v0.1.3Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already establish that this is a mutating (readOnlyHint=false), non-idempotent action. The description adds that the update is forced, immediate, and scoped to a single task. It does not disclose whether the call waits for the external provider update to complete, whether the task must be enabled, or the error behavior for an invalid key — but the annotation coverage lowers the burden.
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?
A single six-word sentence with zero filler; the action and scope are front-loaded. It is appropriately sized for a one-parameter tool, though slightly too terse to also carry usage or sourcing hints.
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?
There is no output schema, so the description must explain the outcome, but it never says what happens after invocation (synchronous vs. fire-and-forget), whether the task must be enabled, or where the key comes from. For a tool that triggers an external DDNS provider update, this is a meaningful gap.
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 0%, so the description carries the burden for the single required 'key' parameter. The phrase 'one DDNS task' implies key selects the target task, which is a partial hint, but it does not state the key's format or where to obtain it (e.g., from lucky_list_ddns).
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 'Force one DDNS task to update now' uses a specific verb ('Force... to update'), a clear resource ('one DDNS task'), and a temporal scope ('now'). It is readily distinguishable from the DDNS sibling family (list_ddns, get_ddns, set_ddns_enabled, ddns_logs), though it does not explicitly name an alternative.
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 when-to-use or when-not-to-use guidance and no alternatives mentioned. With a DDNS family (list/get/set_enabled/logs) and a similarly 'trigger now' sibling (lucky_run_cron_job), the agent gets no help choosing between forcing a sync versus enabling a task or running a cron job.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.