Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| FEISHU_APP_ID | Yes | Your Feishu application ID (e.g., cli_xxxxxxxxxxxxx) | |
| FEISHU_APP_SECRET | Yes | Your Feishu application secret |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| create_bitable_app | 创建多维表格应用
参数:
name: 多维表格名称
folder_token: (可选) 文件夹token,指定创建位置
返回:
JSON格式的应用信息,包含app_token等
|
| copy_bitable_app | 复制多维表格应用
参数:
app_token: 要复制的多维表格token
name: 新多维表格的名称
folder_token: (可选) 文件夹token,指定创建位置
返回:
JSON格式的应用信息
|
| create_bitable_record | 在多维表格中创建单条记录
参数:
app_token: 多维表格的token
table_id: 数据表ID
fields: 记录字段字典,例如 {"text_field": "值", "number_field": 123}
返回:
创建的记录信息
|
| update_bitable_record | 更新多维表格中的单条记录
参数:
app_token: 多维表格的token
table_id: 数据表ID
record_id: 记录ID
fields: 要更新的字段字典
返回:
更新后的记录信息
|
| search_bitable_records | 查询多维表格记录(支持分页)
参数:
app_token: 多维表格的token
table_id: 数据表ID
page_size: 每页记录数(1-500)
page_token: 分页token,首次查询为空
filter: (可选) 过滤条件
返回:
记录列表和分页信息
|
| batch_create_bitable_records | 批量创建多维表格记录(最多1000条)
参数:
app_token: 多维表格的token
table_id: 数据表ID
records: 记录列表,每条记录是一个fields字典
返回:
创建的记录信息
|
| batch_update_bitable_records | 批量更新多维表格记录(最多1000条)
参数:
app_token: 多维表格的token
table_id: 数据表ID
records: 要更新的记录列表,每条记录包含record_id和fields
返回:
更新后的记录信息
|
| batch_get_bitable_records | 批量获取多维表格记录(最多100条)
参数:
app_token: 多维表格的token
table_id: 数据表ID
record_ids: 记录ID列表
返回:
记录信息
|
| batch_delete_bitable_records | 批量删除多维表格记录
参数:
app_token: 多维表格的token
table_id: 数据表ID
record_ids: 要删除的记录ID列表
返回:
删除结果
|
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |