process_file
Process and extract content from files including PDFs, documents, images, and spreadsheets using the GLM-4.5V MCP Server. Supports optional extraction prompts for precise content retrieval.
Instructions
使用 GLM-4.5V 处理文件(上传并提取内容)。支持 PDF、DOCX、DOC、XLS、XLSX、PPT、PPTX、PNG、JPG、JPEG、CSV 等格式
Input Schema
Name | Required | Description | Default |
---|---|---|---|
extractPrompt | No | 可选的内容提取提示词,用于指导如何提取文件内容 | |
filePath | Yes | 文件路径(本地文件路径) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"extractPrompt": {
"description": "可选的内容提取提示词,用于指导如何提取文件内容",
"type": "string"
},
"filePath": {
"description": "文件路径(本地文件路径)",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}