讯飞智文PPT生成服务MCP Server
Provides tools for creating PPT outlines from text or document content, supporting outline-based presentation generation with customizable templates and automatic image inclusion.
Offers Python-based integration for accessing the PPT generation service programmatically, allowing developers to implement the MCP protocol in Python applications.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@讯飞智文PPT生成服务MCP Servercreate a business presentation about Q3 sales performance using a modern template"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
讯飞智文PPT生成服务MCP Server
概述
讯飞智文PPT生成服务MCP Server是基于讯飞星火大模型搭建的智能文档AI助理,全面兼容MCP协议,支持通过MCP协议快速接入各类智能体助手(如Claude、Cursor以及千帆AppBuilder等)。
本服务提供6个符合MCP协议标准的API接口,涵盖PPT模板获取、PPT生成任务创建、任务进度查询、大纲生成等核心功能,帮助用户高效生成PPT文档,提升工作与学习效率。
依赖MCP Python SDK开发,支持通过环境变量配置服务认证信息,确保安全可靠的API调用。
Related MCP server: Egile MCP Slide Deck Generator
工具
1. 获取PPT模板列表 get_theme_list
描述:获取可用的PPT模板列表,支持通过风格、颜色、行业等条件筛选模板,需先设置环境变量
AIPPT_APP_ID和AIPPT_API_SECRET。参数:
pay_type:模板付费类型(可选值:free-免费模板,not_free-付费模板,默认值:not_free)style:模板风格(如:简约、商务、科技等,可选)color:模板颜色(如:红色、蓝色等,可选)industry:模板行业(如:教育培训、金融等,可选)page_num:页码(从1开始,默认值:2)page_size:每页数量(最大100,默认值:10)
输出:包含模板列表的字典,每个模板包含
template_id、name、style等信息。
2. 创建PPT生成任务 create_ppt_task
描述:根据文本内容和模板ID创建PPT生成任务,需先通过
get_theme_list获取有效的template_id,返回任务ID(sid)用于查询进度。参数:
text:PPT生成的内容描述(必填)template_id:PPT模板ID(必填,通过get_theme_list获取)author:PPT作者名称(默认值:XXXX)is_card_note:是否生成演讲备注(True/False,默认值:True)search:是否联网搜索补充内容(True/False,默认值:False)is_figure:是否自动配图(True/False,默认值:True)ai_image:AI配图类型(仅在is_figure=True时生效,可选值:normal-普通配图,advanced-高级配图,默认值:normal)
输出:成功时返回
{"sid": "任务ID"},失败时抛出异常。
3. 查询PPT生成任务进度 get_task_progress
描述:查询通过
create_ppt_task或create_ppt_by_outline创建的任务进度,任务完成后返回PPT下载地址。参数:
sid:任务ID(必填,从任务创建工具返回中获取)
输出:包含任务状态(
status)和PPT下载地址(download_url)的字典。
4. 创建PPT大纲 create_outline
描述:根据文本内容生成PPT大纲,支持联网搜索补充内容,生成的大纲可用于
create_ppt_by_outline。参数:
text:需要生成大纲的内容描述(必填)language:大纲生成语言(目前仅支持cn-中文,默认值:cn)search:是否联网搜索(True/False,默认值:False)
输出:包含大纲内容的字典,格式为
{"data": {"outline": 大纲内容}}。
5. 从文档创建PPT大纲 create_outline_by_doc
描述:根据文档内容生成PPT大纲,支持通过URL或本地路径上传文档(格式:pdf、doc、docx、txt、md,大小≤10M,字数≤8000字)。
参数:
file_name:文档文件名(必填,需包含后缀名)file_url:文档URL地址(与file_path二选一必填)file_path:文档本地路径(与file_url二选一必填)text:补充文本内容(指导大纲生成,必填)language:大纲生成语言(目前仅支持cn-中文,默认值:cn)search:是否联网搜索(True/False,默认值:False)
输出:包含大纲内容的字典,格式同
create_outline。
6. 根据大纲创建PPT create_ppt_by_outline
描述:根据已生成的大纲和模板ID创建PPT,需通过
create_outline或create_outline_by_doc获取大纲,通过get_theme_list获取模板ID。参数:
text:PPT生成内容描述(必填)outline:大纲内容(必填,需提取create_outline返回的['data']['outline']字段)template_id:PPT模板ID(必填,通过get_theme_list获取)author:PPT作者名称(默认值:XXXX)is_card_note:是否生成演讲备注(True/False,默认值:True)search:是否联网搜索补充内容(True/False,默认值:False)is_figure:是否自动配图(True/False,默认值:True)ai_image:AI配图类型(仅在is_figure=True时生效,默认值:normal)
输出:成功时返回
{"sid": "任务ID"},失败时抛出异常。
开始
获取认证信息
在讯飞开放平台申请应用,获取 AIPPT_APP_ID 和 AIPPT_API_SECRET,并设置为环境变量:
export AIPPT_APP_ID="你的应用ID"
export AIPPT_API_SECRET="你的API密钥"Python接入
推荐方式:使用uvx一键启动(极简接入)
uvx 是一款轻量级工具,支持快速运行MCP服务,无需额外安装依赖。若已安装uvx,可直接通过以下步骤启动服务:
安装uvx(首次使用需安装)
# 按官方文档安装uv(支持macOS/Linux/Windows)
curl -fsSL https://install.astral.sh/uv | bash启动服务
uvx zwppt-mcp该命令会自动拉取并运行讯飞智文PPT生成服务MCP Server,无需手动管理依赖或代码。
MCP客户端配置
在MCP客户端(如Claude.app)中添加服务配置
使用uvx启动的配置(推荐)
{
"mcpServers": {
"zwppt-mcp": {
"command": "uvx",
"args": ["zwppt-mcp"],
"env": {
"AIPPT_APP_ID": "<你的应用ID>",
"AIPPT_API_SECRET": "<你的API密钥>"
}
}
}
}说明
参数规格:
template_id需通过get_theme_list工具获取,确保为有效模板ID。sid任务ID需从任务创建工具(create_ppt_task/create_ppt_by_outline)的返回中获取。文档上传时,
file_url与file_path需二选一,且文件名需包含正确后缀(如.pdf/.docx)。
任务流程:
生成PPT需先获取模板ID(
get_theme_list),再创建任务(create_ppt_task/create_ppt_by_outline),通过get_task_progress轮询进度,任务完成后获取下载地址。
反馈
使用中遇到问题,欢迎通过issue或讯飞开放平台客服反馈。我们鼓励提交PR贡献代码,感谢您的支持!
Available Tools
6 toolscreate_outlineA
创建PPT大纲。
使用说明:
1. 用于根据文本内容生成PPT大纲。
2. 生成的大纲可用于create_ppt_by_outline工具。
3. 可通过search参数控制是否联网搜索补充内容。
4. 需先设置环境变量AIPPT_APP_ID和AIPPT_API_SECRET。
参数:
- text: 需要生成大纲的内容描述。
- language: 大纲生成的语言,目前支持cn(中文)。
- search: 是否联网搜索,True表示联网搜索补充内容,False表示不联网。
返回:
包含生成的大纲内容的字典。
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | ||
| language | No | cn | |
| search | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses that the tool can perform web searches (via the 'search' parameter) and requires environment variables for authentication, which are useful behavioral traits. However, it doesn't cover other aspects like rate limits, error handling, or what happens during the outline generation process, leaving gaps in behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with sections for purpose, usage instructions, parameters, and returns, making it easy to scan. It's appropriately sized with no redundant sentences, though the Chinese language might add slight complexity for non-native agents, but the content is front-loaded and efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 3 parameters, no annotations, and no output schema, the description does a good job covering key aspects: purpose, usage, parameters, and return format. It mentions prerequisites and sibling tools, but could improve by detailing output structure or error cases more explicitly, given the lack of structured output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 0%, so the description must compensate fully. It adds significant meaning beyond the input schema by explaining each parameter: 'text' is for content description, 'language' specifies supported options (currently 'cn'), and 'search' controls web searching with boolean semantics. This provides clear semantics that the schema alone lacks.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose as '创建PPT大纲' (create PPT outline) and specifies it generates outlines from text content, which is a specific verb+resource combination. However, it doesn't explicitly differentiate from sibling tools like 'create_outline_by_doc' which likely serves a similar purpose with different input, leaving room for improvement.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear usage context: it indicates when to use this tool (for generating outlines from text) and mentions an alternative tool 'create_ppt_by_outline' for subsequent steps. It also notes prerequisites (setting environment variables). However, it lacks explicit guidance on when not to use it or comparisons with other siblings like 'create_outline_by_doc'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_outline_by_docA
从文档创建PPT大纲。
使用说明:
1. 用于根据文档内容生成PPT大纲。
2. 支持通过file_url或file_path上传文档。
3. 文档格式支持:pdf(不支持扫描件)、doc、docx、txt、md。
4. 文档大小限制:10M以内,字数限制8000字以内。
5. 生成的大纲可用于create_ppt_by_outline工具。
6. 需先设置环境变量AIPPT_APP_ID和AIPPT_API_SECRET。
参数:
- file_name: 文档文件名,必须包含文件后缀名。
- file_url: 文档文件的URL地址,与file_path二选一必填。
- file_path: 文档文件的本地路径,与file_url二选一必填。
- text: 补充的文本内容,用于指导大纲生成。
- language: 大纲生成的语言,目前支持cn(中文)。
- search: 是否联网搜索,True表示联网搜索补充内容,False表示不联网。
返回:
包含生成的大纲内容的字典。
| Name | Required | Description | Default |
|---|---|---|---|
| file_name | Yes | ||
| text | Yes | ||
| file_url | No | ||
| file_path | No | ||
| language | No | cn | |
| search | No |
TDQS
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 document format support (pdf, doc, docx, txt, md with exclusions like scanned PDFs), size/word limits (10M, 8000 words), authentication requirements (environment variables), and integration with another tool (create_ppt_by_outline). It doesn't mention rate limits or error handling, but covers key behavioral aspects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured and front-loaded: it starts with the core purpose, then lists usage instructions in numbered points, followed by parameters and return value sections. Every sentence adds value—no fluff or repetition. It's appropriately sized for a tool with 6 parameters and complex behavior.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (6 parameters, no annotations, no output schema), the description is largely complete: it covers purpose, usage, behavioral traits, and parameter semantics. The main gap is the lack of output details—it only states '包含生成的大纲内容的字典' without specifying structure or examples. However, it compensates well with other context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
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 significant meaning: explains file_url vs file_path as mutually exclusive options, clarifies file_name must include extension, describes text as supplementary guidance, specifies language support (cn), and explains search parameter for online content. It doesn't detail default values or all constraints, but provides substantial context beyond the bare schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: '从文档创建PPT大纲' (create PPT outline from document). It specifies the action (create outline), the resource (document), and distinguishes it from sibling tools like create_outline (which likely doesn't use documents) and create_ppt_by_outline (which uses outlines to create PPTs).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit usage guidelines: it states when to use ('用于根据文档内容生成PPT大纲'), mentions a sibling tool alternative ('生成的大纲可用于create_ppt_by_outline工具'), and includes prerequisites ('需先设置环境变量AIPPT_APP_ID和AIPPT_API_SECRET'). It also specifies document format and size limits, which help determine when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_ppt_by_outlineA
根据大纲创建PPT。
使用说明:
1. 用于根据已生成的大纲创建PPT。
2. 大纲需通过create_outline或create_outline_by_doc工具生成。
3. template_id需通过get_theme_list工具获取。
4. 工具会返回任务ID(sid),需用get_task_progress轮询查询进度。
5. 任务完成后,可从get_task_progress结果中获取PPT下载地址。
6. 需先设置环境变量AIPPT_APP_ID和AIPPT_API_SECRET。
参数:
- text: PPT生成的内容描述,用于指导PPT生成。
- outline: 大纲内容,需从create_outline或create_outline_by_doc工具返回的JSON响应中提取['data']['outline']字段的值。该字段包含生成的大纲内容,格式为dict。
- template_id: PPT模板ID,需通过get_theme_list工具获取。
- author: PPT作者名称,将显示在生成的PPT中。
- is_card_note: 是否生成PPT演讲备注,True表示生成,False表示不生成。
- search: 是否联网搜索,True表示联网搜索补充内容,False表示不联网。
- is_figure: 是否自动配图,True表示自动配图,False表示不配图。
- ai_image: AI配图类型,仅在is_figure为True时生效。可选值:normal-普通配图(20%正文配图),advanced-高级配图(50%正文配图)。
返回:
成功时返回包含sid的字典,失败时抛出异常。
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | ||
| outline | Yes | ||
| template_id | Yes | ||
| author | No | XXXX | |
| is_card_note | No | ||
| search | No | ||
| is_figure | No | ||
| ai_image | No | normal |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden and does an excellent job disclosing behavioral traits. It explains the asynchronous nature (returns task ID for polling), workflow dependencies, authentication requirements, and output format (dictionary with sid). It also clarifies failure behavior (throws exceptions). The only minor gap is lack of rate limit or quota information.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with clear sections (purpose, usage instructions, parameters, returns) but could be more concise. Some sentences could be combined (e.g., the multiple tool references in usage guidelines). However, every sentence earns its place by providing essential information, and the structure helps with readability.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (8 parameters, asynchronous workflow, multiple dependencies) and absence of both annotations and output schema, the description provides complete contextual information. It covers purpose, prerequisites, workflow, parameter semantics, and return behavior. For a complex tool with no structured metadata, this description is comprehensive.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage for 8 parameters, the description fully compensates by providing detailed semantic explanations for every parameter. It clarifies data sources (outline from specific JSON path, template_id from get_theme_list), boolean parameter meanings, dependencies (ai_image only when is_figure is True), and enum values for ai_image. This adds substantial value beyond the bare schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: '根据大纲创建PPT' (create PPT based on outline). It specifies the verb ('创建' - create) and resource ('PPT'), but doesn't explicitly differentiate from sibling 'create_ppt_task' which might have overlapping functionality. The purpose is clear but sibling differentiation is incomplete.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides excellent usage guidelines with explicit prerequisites and workflow context. It specifies when to use (after generating outline via create_outline or create_outline_by_doc), prerequisites (environment variables AIPPT_APP_ID and AIPPT_API_SECRET), and the complete workflow (returns task ID for polling with get_task_progress, then download from results). It also references template_id source from get_theme_list.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_ppt_taskA
创建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。
参数:
- text: PPT生成的内容描述,用于生成PPT的主题和内容。
- template_id: PPT模板ID,需通过get_theme_list获取。
- author: PPT作者名称,将显示在生成的PPT中。
- is_card_note: 是否生成PPT演讲备注,True表示生成,False表示不生成。
- search: 是否联网搜索,True表示联网搜索补充内容,False表示不联网。
- is_figure: 是否自动配图,True表示自动配图,False表示不配图。
- ai_image: AI配图类型,仅在is_figure为True时生效。可选值:normal-普通配图(20%正文配图),advanced-高级配图(50%正文配图)。
返回:
成功时返回包含sid的字典,失败时抛出异常。
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | ||
| template_id | Yes | ||
| author | No | XXXX | |
| is_card_note | No | ||
| search | No | ||
| is_figure | No | ||
| ai_image | No | normal |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden and does well by explaining the asynchronous nature (returns task ID for polling), error behavior (throws exceptions on failure), and environmental requirements (AIPPT_APP_ID and AIPPT_API_SECRET). It doesn't mention rate limits or specific permission requirements, keeping it from a perfect score.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Well-structured with clear sections (使用说明, 参数, 返回) and bullet points, but could be slightly more concise. Every sentence earns its place by providing essential information, though some redundancy exists in the parameter explanations.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (7 parameters, asynchronous workflow, no annotations, no output schema), the description provides comprehensive coverage including prerequisites, parameter details, workflow steps, return value explanation, and error handling. It addresses all necessary context for proper tool usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage for 7 parameters, the description fully compensates by providing detailed explanations for each parameter including purpose, constraints (template_id must come from get_theme_list), dependencies (ai_image only works when is_figure is True), and enum values for ai_image. This adds significant value beyond the bare schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('创建PPT生成任务' - create PPT generation task) and resource (PPT task). It distinguishes from siblings like create_outline or create_ppt_by_outline by focusing on task creation rather than outline creation or direct PPT generation from outlines.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit usage instructions including prerequisites (must call get_theme_list first, must set environment variables), workflow dependencies (need to poll with get_task_progress), and clear alternatives (different tools for different purposes like create_outline).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_task_progressA
查询PPT生成任务进度。
使用说明:
1. 用于查询通过create_ppt_task或create_ppt_by_outline创建的任务进度。
2. 需定期轮询本工具直到任务完成。
3. 任务完成后,可从返回结果中获取PPT下载地址。
4. 需先设置环境变量AIPPT_APP_ID和AIPPT_API_SECRET。
参数:
- sid: 任务ID,从create_ppt_task或create_ppt_by_outline工具获取。
返回:
包含任务状态和PPT下载地址的字典。
| Name | Required | Description | Default |
|---|---|---|---|
| sid | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes the polling behavior ('需定期轮询本工具直到任务完成'), the expected outcome ('任务完成后,可从返回结果中获取PPT下载地址'), and authentication requirements ('需先设置环境变量AIPPT_APP_ID和AIPPT_API_SECRET'). It doesn't mention rate limits or error handling, but covers the essential behavioral traits for this type of progress-checking tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with clear sections (purpose, usage instructions, parameters, returns) and each sentence earns its place. It could be slightly more concise by combining some points, but the information density is high and the structure facilitates understanding.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (polling progress checker), no annotations, and no output schema, the description provides good completeness. It covers purpose, usage flow, prerequisites, parameter meaning, and expected return content. The main gap is the lack of output schema details, but the description compensates by describing the return format ('包含任务状态和PPT下载地址的字典').
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 0%, so the description must compensate. It provides clear semantic meaning for the single parameter 'sid', explaining it's a task ID obtained from specific sibling tools (create_ppt_task or create_ppt_by_outline). This adds significant value beyond what the bare schema provides, though it doesn't specify format constraints or examples.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific verb ('查询' meaning 'query') and resource ('PPT生成任务进度' meaning 'PPT generation task progress'), distinguishing it from sibling tools like create_ppt_task or get_theme_list. It explicitly identifies the tool's purpose as checking progress for PPT generation tasks.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit usage guidelines: it specifies when to use (for tasks created by create_ppt_task or create_ppt_by_outline), when to stop (poll until task completion), prerequisites (environment variables AIPPT_APP_ID and AIPPT_API_SECRET), and what to expect after completion (PPT download address). This covers both usage context and exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_theme_listA
获取PPT模板列表。
使用说明:
1. 此工具用于获取可用的PPT模板列表,需先调用本工具获取template_id,后续PPT生成需用到。
2. 可通过style、color、industry等参数筛选模板。
3. 需先设置环境变量AIPPT_APP_ID和AIPPT_API_SECRET。
参数:
- pay_type: 模板付费类型,可选值:free-免费模板,not_free-付费模板。
- style: 模板风格,如:简约、商务、科技等。
- color: 模板颜色,如:红色、蓝色等。
- industry: 模板行业,如:教育培训、金融等。
- page_num: 页码,从1开始。
- page_size: 每页数量,最大100。
返回:
包含模板列表的字典,每个模板包含template_id等信息。
| Name | Required | Description | Default |
|---|---|---|---|
| pay_type | No | not_free | |
| style | No | ||
| color | No | ||
| industry | No | ||
| page_num | No | ||
| page_size | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It does reveal that this is a read operation (获取/获取), mentions pagination behavior (page_num, page_size with max 100), and notes authentication prerequisites. However, it doesn't disclose rate limits, error conditions, or whether the operation is idempotent/cacheable.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with clear sections (purpose, usage instructions, parameters, return). Most sentences earn their place, though the Chinese formatting with numbered lists and bullet points is slightly verbose. The core information is front-loaded appropriately.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 6-parameter read operation with no annotations and no output schema, the description does quite well. It covers purpose, prerequisites, all parameters, pagination behavior, and return format. The main gap is lack of output schema details (only mentions '包含模板列表的字典' - contains template list dictionary), but given the context, this is reasonably complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 0% description coverage, so the description must fully compensate. It provides excellent parameter semantics: it explains all 6 parameters with clear meanings, optional values for pay_type, examples for style/color/industry, and constraints for page_size. This adds substantial value beyond the bare schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose as '获取PPT模板列表' (get PPT template list), which is a specific verb+resource combination. It distinguishes this tool from its siblings (create_outline, create_ppt_by_outline, etc.) by focusing on template retrieval rather than creation or task management.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear usage context: it explains that this tool should be called first to obtain template_id for subsequent PPT generation. It also mentions environment variable prerequisites (AIPPT_APP_ID and AIPPT_API_SECRET). However, it doesn't explicitly state when NOT to use this tool or name specific alternatives among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
6 tool updates
- First observed
create_outline - First observed
create_outline_by_doc - First observed
create_ppt_by_outline - First observed
create_ppt_task - First observed
get_task_progress - First observed
get_theme_list
TDQS
Scored across 6 tools
The tools are mostly distinct with clear purposes: create_outline and create_outline_by_doc both generate outlines but from different inputs (text vs. document), which is reasonable. create_ppt_by_outline and create_ppt_task both create PPTs but differ in input requirements (outline-based vs. direct text-based), which could cause minor confusion. get_task_progress and get_theme_list are clearly separate. Overall, the overlap is minimal and descriptions help clarify differences.
All tool names follow a consistent snake_case pattern with clear verb_noun structures (e.g., create_outline, get_task_progress). The naming is predictable and uniform across all six tools, making it easy for agents to understand and navigate the toolset.
With 6 tools, this server is well-scoped for its purpose of PPT generation. It covers the core workflow from outline creation to PPT generation, task monitoring, and template selection. Each tool serves a specific function without redundancy, and the count is appropriate for the domain.
The toolset covers the essential PPT generation lifecycle: outline creation (from text or document), PPT generation (via outline or direct task), task progress tracking, and template listing. Minor gaps include no explicit tools for updating or deleting tasks or outlines, but agents can work around this by re-running tasks. The surface is largely complete for the stated purpose.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Presentations.AI MCP server — create designed slide decks from a topic, text, or document.
AI presentation and report generation: slides, diagrams, PPTX export, live preview MCP App.
Generate, edit, merge, translate and PDF-convert PowerPoint (.pptx) over MCP. 8 tools.
MCP server for Qwen Image 3 AI image generation
Related MCP Servers
- FlicenseNot gradedqualityAmaintenanceMCP server for generating slides from natural language, with interactive preview and export to PDF, PPTX, and Markdown.19-
- AlicenseNot gradedqualityDmaintenanceEnables creation of professional PowerPoint presentations with AI-generated content and images, supporting multiple LLMs and image services via MCP protocol.MIT
- FlicenseAqualityBmaintenanceAn MCP server that auto-generates presentations from a topic using AI, supporting slide editing, visual QA, and export to HTML/PPTX.307-
- AlicenseNot gradedqualityCmaintenanceA comprehensive MCP server for PowerPoint manipulation enabling users to create, edit, and format presentations with 32 tools including templates, charts, images, and professional design features.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Alex-Smith-1234/zwppt-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server