Skip to main content
Glama
Alieforwang

xunfeiPpt MCP Server

by Alieforwang

create_ppt_task

Starts a PPT generation task from a text prompt and template ID, then returns a task ID to track progress and retrieve the completed presentation.

Instructions

创建PPT生成任务。使用说明:1. 在调用本工具前,必须先调用get_theme_list获取有效的template_id。2. 工具会返回任务ID(sid),需用get_task_progress轮询查询进度。3. 任务完成后,可从get_task_progress结果中获取PPT下载地址。4. 需先设置环境变量AIPPT_APP_ID和AIPPT_API_SECRET。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYesPPT生成的内容描述,用于生成PPT的主题和内容
authorNoPPT作者名称,将显示在生成的PPT中XXXX
searchNo是否联网搜索,True表示联网搜索补充内容,False表示不联网
ai_imageNoAI配图类型,仅在is_figure为True时生效。可选值:normal-普通配图(20%正文配图),advanced-高级配图(50%正文配图)normal
is_figureNo是否自动配图,True表示自动配图,False表示不配图
template_idYesPPT模板ID,需通过get_theme_list获取
is_card_noteNo是否生成PPT演讲备注,True表示生成,False表示不生成

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.9/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden and does well: it discloses that the tool is asynchronous, returns a task ID (sid), requires polling, and depends on AIPPT_APP_ID/AIPPT_API_SECRET environment variables being set. It omits failure modes, timeouts, or rate limits, but the core async contract is explained.

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 front-loaded purpose sentence followed by a numbered prerequisite/workflow list; every item earns its place by covering a step the agent would otherwise miss. Slightly long, but nothing is redundant.

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

Completeness4/5

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

For a tool with no output schema and 7 parameters, the description supplies the async lifecycle (sid, polling, download URL) and the auth prerequisite, which are exactly the gaps structured fields cannot cover. It stops short of describing error behavior or text-format expectations.

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 100%, so the schema already documents every parameter including defaults and the ai_image/is_figure dependency. The description only reinforces that template_id comes from get_theme_list, adding little beyond structured data, so the baseline 3 applies.

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+resource (创建PPT生成任务) and clearly frames it as a task-creation step. It does not explicitly contrast itself with close siblings like create_ppt_by_outline or create_full_ppt_workflow, leaving the agent to infer which entry point fits, but the noun itself is unambiguous.

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 concrete sequencing: call get_theme_list first to obtain a valid template_id, then poll with get_task_progress, then fetch the download URL from the progress result. That is strong context for invoking it correctly, though it never states when to prefer this tool over the outline-based or full-workflow alternatives.

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