Skip to main content
Glama
aspose-cells-cloud

Aspose.Cells Cloud MCP Server

Official

Convert Spreadsheet

convert_spreadsheet

Convert Base64-encoded spreadsheet data into PDF, CSV, HTML, or XPS by specifying the target format. Get the transformed file output for further use.

Instructions

Convert Spreadsheet content (provided as a Base64 string) to a specified format such as PDF, CSV, HTML, or XPS.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
formatYes
spreadsheet_b64stringYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv26.4.0

TDQS

C2.9/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 of behavioral disclosure. It states the input is Base64 and lists supported output formats, but does not disclose whether the result is returned in the response, written to storage, or what happens with unsupported formats. For a conversion tool the output behavior is a significant unstated trait.

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?

A single efficient sentence that front-loads the action and resource. No filler. It could be slightly more structured by separating the input constraint from the format list, but there is zero waste.

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?

With two required params, no enums, no output schema, and no annotations, the description is thin on what an agent needs to call it correctly: it never states what the response returns or whether the converted file is saved. It identifies inputs and target formats but leaves the outcome unspecified.

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 0%, so the description must compensate. It adds meaning to 'format' by listing PDF, CSV, HTML, XPS, and to 'spreadsheet_b64string' by clarifying Base64 encoding. However, the format list is illustrative ('such as') rather than exhaustive and no constraints or value semantics are given.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb (convert), a resource (Spreadsheet content as Base64), and the target formats (PDF, CSV, HTML, XPS), which makes the core purpose clear. It does not, however, distinguish itself from the generic sibling 'convert_excel', so an agent cannot tell which generic converter to pick or whether this covers Excel/Ods inputs.

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

Usage Guidelines2/5

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 the format-specific siblings (convert_excel_to_csv, convert_excel_to_pdf, convert_ods_to_pdf) or the overlapping generic convert_excel. No exclusions, no alternative routing, and no mention of which input types are expected beyond a Base64 string.

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