Skip to main content
Glama
xiongxingzhe

palworld-save-mcp

by xiongxingzhe

check_migration_readiness

Check a Palworld save for co-op to dedicated server migration readiness, flagging the 0000...0001 host reset bug to prevent progress loss.

Instructions

Checks if a Palworld save is ready for migration from 4-player co-op to a Linux/Windows Dedicated Server, flagging the 0000...0001 host reset bug.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
save_pathYesPath to the Palworld world save directory.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It usefully reveals that the tool performs a readiness check and flags the '0000...0001 host reset bug'. However, it does not explicitly state that the check is read-only, nor does it describe permissions, failure behavior, or the exact form of the output.

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 dense sentence that front-loads the purpose and includes the key bug detail without filler. Every clause contributes relevant context, including the migration target platforms.

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?

For a tool with one required string parameter, no output schema, and no annotations, the description is largely sufficient for an agent to select the tool and invoke it. The main gap is the underspecified result format—whether the tool returns a boolean, report, or flag—which matters if the agent must act on the output.

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 description coverage is 100%, so save_path is already documented as the path to the Palworld world save directory. The description adds no parameter-level meaning beyond the schema, so the 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 ('Checks') with a clear resource ('a Palworld save') and a precise scope ('ready for migration from 4-player co-op to a Linux/Windows Dedicated Server'). It also names the exact bug it flags, making it easy to distinguish from the broader inspect_palworld_save and from check_server_override.

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 intended use case is explicit: determine whether a Palworld save can be migrated from co-op to a dedicated server. It does not name sibling tools or provide when-not-to-use guidance, but the context is clear enough for an agent to route to this tool.

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