Skip to main content
Glama

KoboToolbox Form Version History

kobo_form_versions
DestructiveIdempotent

List deployed versions of a Kobo form and restore a previous one to fix issues; redeploying an older version restores the original structure while preserving collected data.

Instructions

List a form's deployed versions, and roll back to one of them.

Kobo keeps every version that was ever deployed. This is the way back when a change breaks a live form: redeploying a past version restores the old structure without touching the submissions already collected.

Args:

  • uid (string): asset uid of the form

  • rollback_to (string, optional): version uid to redeploy. Omit to only list the history.

  • limit (number, default 30): how many versions to list

  • response_format ('markdown' | 'json')

Returns: the version history (newest first) with deployment dates, and the resulting status after a rollback.

Notes:

  • Rolling back changes the form structure only. Answers collected under the newer version stay in the database, but fields that no longer exist drop out of exports.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uidYesAsset uid of the form
limitNoHow many versions to list
rollback_toNoVersion uid to redeploy. Omit to only list the version history.
response_formatNoOutput format: 'markdown' for human-readable or 'json' for machine-readablemarkdown

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.4/5.0
Behavior5/5

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

Annotations already signal read/write safety and destructiveness, and the description adds valuable behavioral detail beyond them: rollback changes form structure only, collected submissions remain, and fields that no longer exist drop out of exports. This is exactly the kind of side-effect disclosure that lets an agent reason about consequences.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well structured and front-loaded with the core purpose. The use-case explanation and notes earn their place, and the Args/Returns/Notes sections are scannable. The Args list is slightly redundant with the schema but remains compact and helpful.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema, the description compensates by stating the return format, ordering ('newest first'), deployment dates, and post-rollback status. It also covers the main side effect and the optional-parameter behavior. The only things not spelled out, such as error conditions, are minor given the annotation coverage and schema richness.

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?

The input schema already describes all four parameters with 100% coverage)Skip, so the description's Args section mostly repeats structured information. It adds minimal extra meaning beyond the schema, such as the implication that omitting rollback_to lists history, which the schema itself already conveys.

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 opens with two concrete verbs and a specific resource: 'List a form's deployed versions, and roll back to one of them.' This clearly distinguishes it from sibling functions that manage forms generically, and the rollback capability is unique among the listed tools.

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?

It gives an explicit, scenario-based 'when to use' instruction: 'the way back when a change breaks a live form.' It explains how it differs from a plain update by restoring old structure without touching collected submissions. It stops short of naming specific alternative tools or stating when not to use it, so it does not fully earn a 5.

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