MCP Feishu Project Manager

by Roland0511
Verified

get_work_item_detail

获取飞书项目工作项详情 Args: work_item_type_key: 工作项类型,可选值为"story"、"version"、"issue", 分别对应需求、版本、缺陷。 work_item_ids: 工作项ID,多个ID之间用逗号分隔

Input Schema

NameRequiredDescriptionDefault
work_item_idsYes
work_item_type_keyYes

Input Schema (JSON Schema)

{ "properties": { "work_item_ids": { "title": "Work Item Ids", "type": "string" }, "work_item_type_key": { "enum": [ "story", "version", "issue" ], "title": "Work Item Type Key", "type": "string" } }, "required": [ "work_item_type_key", "work_item_ids" ], "title": "get_work_item_detailArguments", "type": "object" }