get-feishu-doc
Retrieve plain text content from Feishu documents by specifying the document ID or URL. Integrates with the Weather MCP Server for efficient data handling.
Instructions
获取飞书文档内容(纯文本)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
docId | Yes | 飞书文档ID,通常在URL中找到。支持以下类型的完整链接或文档ID:doc、docx、sheet、sheets、mindnote、bitable、file、slides、wiki |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"docId": {
"description": "飞书文档ID,通常在URL中找到。支持以下类型的完整链接或文档ID:doc、docx、sheet、sheets、mindnote、bitable、file、slides、wiki",
"type": "string"
}
},
"required": [
"docId"
],
"type": "object"
}