Skip to main content
Glama
cmssy-io

@cmssy/mcp-server

Official
by cmssy-io

update_form_submission_status

Update a form submission's status to pending, processed, spam, or archived. Manage form entries in Cmssy CMS by changing their state.

Instructions

Update a form submission's status (pending, processed, spam, archived).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
statusNoNew status
submissionIdNoThe submission's id

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.73.1

TDQS

A3.5/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It states 'Update' implying a mutation, but does not disclose permissions required, reversibility, side effects, or whether it is a partial update. The allowed values are listed, but no further behavioral context is given.

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, efficient sentence that front-loads the action and includes the allowed values. No unnecessary words.

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

Completeness3/5

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

Given the tool has 2 parameters, no output schema, and no annotations, the description is minimal but arguably sufficient for an agent to understand its core function. However, it does not mention any return value, error conditions, or prerequisites, which could be useful. It is adequate but not thorough.

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 documents both parameters (status with enum and submissionId with a description). The tool description only restates the allowed statuses in parentheses, which is redundant with the schema. It adds no additional meaning beyond what the schema provides.

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 clearly states the action (update) and the target resource (form submission's status), and lists the allowed values, which distinguishes it from sibling tools like get_form_submission, delete_form_submission, and list_form_submissions. It is specific and unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use it – when you need to change a submission's status – but does not explicitly contrast it with alternative tools or state when not to use it. There are no other status-update tools among siblings, so it is not critical, but explicit guidance is absent.

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