Skip to main content
Glama
aspose-cells-cloud

Aspose.Cells Cloud MCP Server

Official

Add Text After Text

add_text_after_text

Adds provided text after each occurrence of a target delimiter within text cells in a worksheet range, using Aspose.Cells Cloud API, and reports success.

Instructions

Adds specified text immediately after a target delimiter/selector text within each text cell in a worksheet range using Aspose.Cells Cloud API. Returns True if the operation succeeds.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYes
_rangeNo
file_uuidYes
worksheetNo
select_textYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed3 schema fields changedv26.4.1
    • removedInput schema / properties / file_token
      Removed value: -{
      -  "type": "string"
      -}
    • addedInput schema / properties / file_uuid
      Added value: +{
      +  "type": "string"
      +}
    • changedInput schema / required
      Previous value: -[
      -  "file_token",
      -  "text",
      -  "select_text"
      -]New value: +[
      +  "file_uuid",
      +  "text",
      +  "select_text"
      +]
  2. First observedv26.4.0

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description must disclose behavior itself; it states the side effect (adds text to cells) and the return value ('Returns True if operation succeeds'). However, it does not clarify prerequisites like file ownership, error behavior when select_text is not found, or whether the original file is mutated in place, leaving important gaps.

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?

Two compact sentences immediately state the action, scope, and return value with no filler. The first sentence front-loads the core operation and placement, and the second adds a useful success signal.

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

Completeness2/5

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

For a 5-parameter tool with no annotations and zero schema descriptions, the description is too thin to support correct invocation: it omits parameter rules, selection behavior when no delimiter matches, and clear differentiation from the large sibling set. The output schema exists, but that does not compensate for missing input and usage semantics.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema descriptions are 0% covered, and the description only gestures at 'specified text', 'target delimiter/selector text', and 'worksheet range'. It does not explain file_uuid, worksheet, or _range semantics or formats, so an agent gets only partial parameter meaning.

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 ('Adds') with a clear resource ('text cells in a worksheet range') and a precise placement ('immediately after a target delimiter/selector text'). This distinguishes it from siblings like add_text_before_text or remove_after_text without ambiguity.

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 operation is described precisely enough to infer when it should be used—when text needs to be inserted after a marker inside cell text—but it never names alternatives or says when not to use it. No explicit exclusion or routing to a sibling tool is provided.

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