create_timeline
Add a new timeline to a campaign by providing its ID and the timeline details, enabling structured worldbuilding history.
Instructions
Create a new timeline
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | ||
| campaignId | Yes |
Add a new timeline to a campaign by providing its ID and the timeline details, enabling structured worldbuilding history.
Create a new timeline
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | ||
| campaignId | Yes |
Changes observed during successful MCP inspections.
v2.1.1Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description bears the full burden of behavioral disclosure, but it only states the operation type (create) without mentioning side effects, requirements, or what happens to the nested data object. It is not misleading, but it provides no meaningful transparency beyond the action itself.
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 short, but brevity here is under-specification rather than effective conciseness: the single sentence merely restates the tool name and provides no useful details. It is appropriately front-loaded but does not earn its place with additional value.
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 creation tool with two required parameters, one of which is an opaque nested object, and no output schema or annotations, the description is far too thin. An agent cannot determine what data to provide, how campaignId is used, or what a successful timeline creation entails.
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 must compensate by explaining what campaignId and data mean; it addresses neither parameter. The nested data object is completely unexplained, leaving the agent without enough information to construct a valid call.
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 merely restates the tool name ('Create a new timeline' adds no information beyond create_timeline), so it is a tautology rather than a distinguishing definition. It identifies the verb and resource but does not clarify what a timeline is or how it differs from other timeline-related tools.
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 versus alternatives such as update_timeline or delete_timeline, or whether any prerequisites apply. The correct usage must be inferred entirely from the tool name and the CRUD pattern.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.