Files
root 691b8cdd0c feat: 初始化黄小瓜AI助手记忆仓库
- 核心配置: IDENTITY, USER, SOUL, AGENTS, TOOLS, HEARTBEAT, MEMORY
- memory/: 每日总结和临时记录
- skills/: 所有已安装技能
- notes/: 语音配置笔记
2026-04-04 02:42:48 +08:00

719 lines
17 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 腾讯文档 Sheet MCP 工具完整参考
本文件包含腾讯文档 Sheet MCP 所有工具的通用 API 说明、详细调用示例、参数说明和返回值说明。
---
## 通用说明
### 公共参数
所有工具都包含以下公共参数:
- `file_id` (string, 可选): 文档唯一标识符,与 `file_url` 二选一
- `file_url` (string, 可选): 在线表格的URL链接`file_id` 二选一
- `sheet_id` (string, 必填): 子表 ID`get_sheet_info` 不需要此参数)
### 响应结构
所有 API 成功时返回空对象 `{}`,失败时会抛出对应错误信息。
## 工具调用示例
## 1. set_cell_value
### 功能说明
设置在线表格指定单元格的值支持文本、数字、布尔、公式等类型SHEET
### 调用示例
```json
{
"file_id": "sheet_1234567890",
"sheet_id": "sub_sheet_001",
"cell": {
"row": 0,
"col": 0,
"value_type": "STRING",
"string_value": "Hello World"
}
}
```
### 参数说明
- `file_id` (string, 可选): 文档 ID`file_url` 二选一
- `file_url` (string, 可选): 在线表格的URL链接`file_id` 二选一
- `sheet_id` (string, 必填): 子表 ID
- `cell` (object, 必填): 单元格值参数
- `row` (int64, 必填): 行索引0-based
- `col` (int64, 必填): 列索引0-based
- `value_type` (string, 必填): 值类型,可选值:`STRING``NUMBER``BOOL``FORMULA`
- `number_value` (double, 可选): 数值,`value_type``NUMBER` 时使用
- `string_value` (string, 可选): 字符串值,`value_type``STRING` 时使用
- `bool_value` (bool, 可选): 布尔值,`value_type``BOOL` 时使用
- `formula` (string, 可选): 公式,`value_type``FORMULA` 时使用,例如 `"=SUM(A1:A10)"`
### 返回值说明
```json
{}
```
---
## 2. set_range_value
### 功能说明
批量设置在线表格多个单元格的值SHEET
### 调用示例
```json
{
"file_id": "sheet_1234567890",
"sheet_id": "sub_sheet_001",
"values": [
{
"row": 0,
"col": 0,
"value_type": "STRING",
"string_value": "Name"
},
{
"row": 0,
"col": 1,
"value_type": "STRING",
"string_value": "Score"
},
{
"row": 1,
"col": 0,
"value_type": "STRING",
"string_value": "Alice"
},
{
"row": 1,
"col": 1,
"value_type": "NUMBER",
"number_value": 95.5
}
]
}
```
### 参数说明
- `file_id` (string, 可选): 文档 ID`file_url` 二选一
- `file_url` (string, 可选): 在线表格的URL链接`file_id` 二选一
- `sheet_id` (string, 必填): 子表 ID
- `values` (array, 必填): 单元格值列表,每个元素与 `set_cell_value``cell` 参数结构相同
### 返回值说明
```json
{}
```
---
## 3. set_cell_style
### 功能说明
设置在线表格指定范围单元格的样式包括字体、颜色、对齐等SHEET
### 调用示例
```json
{
"file_id": "sheet_1234567890",
"sheet_id": "sub_sheet_001",
"start_row": 0,
"start_col": 0,
"end_row": 5,
"end_col": 3,
"format": {
"bold": true,
"italic": false,
"font_size": 12,
"font_color": "FF000000",
"bg_color": "FFFFFF00",
"horizontal_align": "center",
"vertical_align": "center",
"wrap_text": true
}
}
```
### 参数说明
- `file_id` (string, 可选): 文档 ID`file_url` 二选一
- `file_url` (string, 可选): 在线表格的URL链接`file_id` 二选一
- `sheet_id` (string, 必填): 子表 ID
- `start_row` (int64, 必填): 起始行索引0-based
- `start_col` (int64, 必填): 起始列索引0-based
- `end_row` (int64, 必填): 结束行索引
- `end_col` (int64, 必填): 结束列索引
- `format` (object, 必填): 样式参数对象 - `bold` (bool, 可选): 是否粗体
- `italic` (bool, 可选): 是否斜体
- `font_family` (string, 可选): 字体名称
- `font_size` (int32, 可选): 字号pt
- `font_color` (string, 可选): 字体颜色ARGB hex`"FF000000"`
- `bg_color` (string, 可选): 背景色ARGB hex`"FFFFFFFF"`
- `horizontal_align` (string, 可选): 水平对齐:`general` / `left` / `center` / `right` / `fill` / `justify`
- `vertical_align` (string, 可选): 垂直对齐:`top` / `center` / `bottom` / `justify`
- `wrap_text` (bool, 可选): 是否自动换行
- `strike_through` (bool, 可选): 是否删除线
- `underline` (string, 可选): 下划线类型:`none` / `single` / `double` / `single_accounting` / `double_accounting`
- `number_format_pattern` (string, 可选): 数字格式,如 `"0.00%"`
- `is_clear` (bool, 可选): 若为 true则清除格式
### 返回值说明
```json
{}
```
---
## 4. merge_cell
### 功能说明
合并在线表格指定范围的单元格支持全部合并、按行合并、按列合并SHEET
### 调用示例
```json
{
"file_id": "sheet_1234567890",
"sheet_id": "sub_sheet_001",
"start_row": 0,
"start_col": 0,
"end_row": 3,
"end_col": 3,
"merge_type": "all"
}
```
### 参数说明
- `file_id` (string, 可选): 文档 ID`file_url` 二选一
- `file_url` (string, 可选): 在线表格的URL链接`file_id` 二选一
- `sheet_id` (string, 必填): 子表 ID
- `start_row` (int64, 必填): 起始行索引0-based
- `start_col` (int64, 必填): 起始列索引0-based
- `end_row` (int64, 必填): 结束行索引
- `end_col` (int64, 必填): 结束列索引
- `merge_type` (string, 必填): 合并类型
- `"all"`: 全部合并(默认)
- `"columns"`: 按列合并
- `"rows"`: 按行合并
### 返回值说明
```json
{}
```
---
## 5. insert_dimension
### 功能说明
在在线表格指定位置插入行或列SHEET
### 调用示例
```json
{
"file_id": "sheet_1234567890",
"sheet_id": "sub_sheet_001",
"dimension_type": "row",
"index": 2,
"count": 3,
"direction": "before"
}
```
### 参数说明
- `file_id` (string, 可选): 文档 ID`file_url` 二选一
- `file_url` (string, 可选): 在线表格的URL链接`file_id` 二选一
- `sheet_id` (string, 必填): 子表 ID
- `dimension_type` (string, 必填): 行列类型:`"row"` | `"col"`
- `index` (int64, 必填): 起始索引0-based
- `count` (int64, 必填): 插入数量
- `direction` (string, 可选): 插入方向:`"before"`(默认)| `"after"`
### 返回值说明
```json
{}
```
---
## 6. delete_dimension
### 功能说明
删除在线表格指定位置的行或列SHEET
### 调用示例
```json
{
"file_id": "sheet_1234567890",
"sheet_id": "sub_sheet_001",
"dimension_type": "col",
"index": 3,
"count": 2
}
```
### 参数说明
- `file_id` (string, 可选): 文档 ID`file_url` 二选一
- `file_url` (string, 可选): 在线表格的URL链接`file_id` 二选一
- `sheet_id` (string, 必填): 子表 ID
- `dimension_type` (string, 必填): 行列类型:`"row"` | `"col"`
- `index` (int64, 必填): 起始索引0-based
- `count` (int64, 必填): 删除数量
### 返回值说明
```json
{}
```
---
## 7. set_freeze
### 功能说明
设置在线表格的冻结行列数,传 0 可取消冻结SHEET
### 调用示例
```json
{
"file_id": "sheet_1234567890",
"sheet_id": "sub_sheet_001",
"row_count": 1,
"col_count": 2
}
```
### 参数说明
- `file_id` (string, 可选): 文档 ID`file_url` 二选一
- `file_url` (string, 可选): 在线表格的URL链接`file_id` 二选一
- `sheet_id` (string, 必填): 子表 ID
- `row_count` (int64, 必填): 冻结行数0 = 取消冻结行)
- `col_count` (int64, 必填): 冻结列数0 = 取消冻结列)
### 返回值说明
```json
{}
```
---
## 8. set_filter
### 功能说明
为在线表格指定数据区域设置筛选SHEET
### 调用示例
```json
{
"file_id": "sheet_1234567890",
"sheet_id": "sub_sheet_001",
"start_row": 0,
"start_col": 0,
"end_row": 100,
"end_col": 5
}
```
### 参数说明
- `file_id` (string, 可选): 文档 ID`file_url` 二选一
- `file_url` (string, 可选): 在线表格的URL链接`file_id` 二选一
- `sheet_id` (string, 必填): 子表 ID
- `start_row` (int64, 必填): 数据区域起始行0-based
- `start_col` (int64, 必填): 数据区域起始列0-based
- `end_row` (int64, 必填): 数据区域结束行
- `end_col` (int64, 必填): 数据区域结束列
- `filter_id` (string, 可选): 筛选 ID不传则自动生成
### 返回值说明
```json
{}
```
---
## 9. remove_filter
### 功能说明
移除在线表格的筛选,可按筛选 ID 精确移除或移除全部SHEET
### 调用示例
```json
{
"file_id": "sheet_1234567890",
"sheet_id": "sub_sheet_001",
"filter_id": "filter_001"
}
```
### 参数说明
- `file_id` (string, 可选): 文档 ID`file_url` 二选一
- `file_url` (string, 可选): 在线表格的URL链接`file_id` 二选一
- `sheet_id` (string, 必填): 子表 ID
- `filter_id` (string, 可选): 筛选 ID不传则移除该子表所有筛选
### 返回值说明
```json
{}
```
---
## 10. set_link
### 功能说明
为在线表格指定单元格设置超链接,可指定链接 URL 和显示文本SHEET
### 调用示例
```json
{
"file_id": "sheet_1234567890",
"sheet_id": "sub_sheet_001",
"row": 0,
"col": 0,
"url": "https://docs.qq.com",
"display_text": "腾讯文档"
}
```
### 参数说明
- `file_id` (string, 可选): 文档 ID`file_url` 二选一
- `file_url` (string, 可选): 在线表格的URL链接`file_id` 二选一
- `sheet_id` (string, 必填): 子表 ID
- `row` (int64, 必填): 单元格行0-based
- `col` (int64, 必填): 单元格列0-based
- `url` (string, 必填): 超链接 URL
- `display_text` (string, 可选): 单元格显示文本
### 返回值说明
```json
{}
```
---
## 11. clear_link
### 功能说明
清除在线表格指定单元格的超链接,可按链接 ID 精确清除或清除全部超链接SHEET
### 调用示例
```json
{
"file_id": "sheet_1234567890",
"sheet_id": "sub_sheet_001",
"row": 0,
"col": 0,
"link_id": "link_001"
}
```
### 参数说明
- `file_id` (string, 可选): 文档 ID`file_url` 二选一
- `file_url` (string, 可选): 在线表格的URL链接`file_id` 二选一
- `sheet_id` (string, 必填): 子表 ID
- `row` (int64, 必填): 单元格行0-based
- `col` (int64, 必填): 单元格列0-based
- `link_id` (string, 可选): 链接 ID不传则按位置清除
### 返回值说明
```json
{}
```
---
## 12. unmerge_cell
### 功能说明
取消在线表格指定区域的单元格合并SHEET
### 调用示例
```json
{
"file_id": "sheet_1234567890",
"sheet_id": "sub_sheet_001",
"start_row": 0,
"start_col": 0,
"end_row": 3,
"end_col": 3
}
```
### 参数说明
- `file_id` (string, 可选): 文档 ID`file_url` 二选一
- `file_url` (string, 可选): 在线表格的URL链接`file_id` 二选一
- `sheet_id` (string, 必填): 子表 ID
- `start_row` (int64, 必填): 起始行索引0-based
- `start_col` (int64, 必填): 起始列索引0-based
- `end_row` (int64, 必填): 结束行索引
- `end_col` (int64, 必填): 结束列索引
### 返回值说明
```json
{}
```
---
## 13. clear_range_cells
### 功能说明
清除在线表格指定区域内所有单元格的内容不影响样式SHEET
### 调用示例
```json
{
"file_id": "sheet_1234567890",
"sheet_id": "sub_sheet_001",
"start_row": 0,
"start_col": 0,
"end_row": 9,
"end_col": 4
}
```
### 参数说明
- `file_id` (string, 可选): 文档 ID`file_url` 二选一
- `file_url` (string, 可选): 在线表格的URL链接`file_id` 二选一
- `sheet_id` (string, 必填): 子表 ID
- `start_row` (int64, 必填): 起始行索引0-based
- `start_col` (int64, 必填): 起始列索引0-based
- `end_row` (int64, 必填): 结束行索引
- `end_col` (int64, 必填): 结束列索引
### 返回值说明
```json
{}
```
---
## 14. clear_range_style
### 功能说明
清除在线表格指定区域内所有单元格的样式不影响内容SHEET
### 调用示例
```json
{
"file_id": "sheet_1234567890",
"sheet_id": "sub_sheet_001",
"start_row": 0,
"start_col": 0,
"end_row": 9,
"end_col": 4
}
```
### 参数说明
- `file_id` (string, 可选): 文档 ID`file_url` 二选一
- `file_url` (string, 可选): 在线表格的URL链接`file_id` 二选一
- `sheet_id` (string, 必填): 子表 ID
- `start_row` (int64, 必填): 起始行索引0-based
- `start_col` (int64, 必填): 起始列索引0-based
- `end_row` (int64, 必填): 结束行索引
- `end_col` (int64, 必填): 结束列索引
### 返回值说明
```json
{}
```
---
## 15. clear_range_all
### 功能说明
清空在线表格指定区域内所有单元格的内容和样式SHEET
### 调用示例
```json
{
"file_id": "sheet_1234567890",
"sheet_id": "sub_sheet_001",
"start_row": 0,
"start_col": 0,
"end_row": 9,
"end_col": 4
}
```
### 参数说明
- `file_id` (string, 可选): 文档 ID`file_url` 二选一
- `file_url` (string, 可选): 在线表格的URL链接`file_id` 二选一
- `sheet_id` (string, 必填): 子表 ID
- `start_row` (int64, 必填): 起始行索引0-based
- `start_col` (int64, 必填): 起始列索引0-based
- `end_row` (int64, 必填): 结束行索引
- `end_col` (int64, 必填): 结束列索引
### 返回值说明
```json
{}
```
---
## 16. unset_freeze
### 功能说明
删除在线表格指定子表的所有冻结行列SHEET
### 调用示例
```json
{
"file_id": "sheet_1234567890",
"sheet_id": "sub_sheet_001"
}
```
### 参数说明
- `file_id` (string, 可选): 文档 ID`file_url` 二选一
- `file_url` (string, 可选): 在线表格的URL链接`file_id` 二选一
- `sheet_id` (string, 必填): 子表 ID
### 返回值说明
```json
{}
```
---
## 17. get_sheet_info
### 功能说明
获取在线表格的子表信息,包括子表 ID、名称、类型、行列数量SHEET
### 调用示例
```json
{
"file_id": "sheet_1234567890"
}
```
### 参数说明
- `file_id` (string, 可选): 文档 ID`file_url` 二选一
- `file_url` (string, 可选): 在线表格的URL链接`file_id` 二选一
> 注意:此工具不需要 `sheet_id` 参数,返回文档下所有子表的信息。
### 返回值说明
```json
{
"sheets": [
{
"sheet_id": "sub_sheet_001",
"sheet_name": "Sheet1",
"sheet_type": "worksheet",
"row_count": 100,
"col_count": 26
}
]
}
```
- `sheets` (array): 子表信息列表
- `sheet_id` (string): 子表 ID
- `sheet_name` (string): 子表名称
- `sheet_type` (string): 子表类型:`worksheet` / `smartsheet` / `smartcanvas`
- `row_count` (int32): 行数
- `col_count` (int32): 列数
---
## 18. get_cell_data
### 功能说明
获取在线表格指定区域的单元格数据,支持返回 CSV 格式或结构化单元格数据SHEET
### 调用示例
```json
{
"file_id": "sheet_1234567890",
"sheet_id": "sub_sheet_001",
"start_row": 0,
"start_col": 0,
"end_row": 9,
"end_col": 4,
"return_csv": false
}
```
### 参数说明
- `file_id` (string, 可选): 文档 ID`file_url` 二选一
- `file_url` (string, 可选): 在线表格的URL链接`file_id` 二选一
- `sheet_id` (string, 必填): 子表 ID
- `start_row` (int64, 必填): 起始行索引0-based
- `start_col` (int64, 必填): 起始列索引0-based
- `end_row` (int64, 必填): 结束行索引
- `end_col` (int64, 必填): 结束列索引
- `return_csv` (bool, 可选): 是否以 CSV 格式返回数据,`true` 返回 `csv_data``false` 返回 `cells` 结构化数据(默认 `false`
### 返回值说明
```json
{
"csv_data": "Name,Score\nAlice,95.5\n",
"cells": [
{
"row": 0,
"col": 0,
"value_type": "STRING",
"string_value": "Name"
},
{
"row": 0,
"col": 1,
"value_type": "STRING",
"string_value": "Score"
}
]
}
```
- `csv_data` (string): CSV 格式数据(`return_csv=true` 时返回)
- `cells` (array): 结构化单元格数据(`return_csv=false` 时返回)
- `row` (int32): 行索引0-based
- `col` (int32): 列索引0-based
- `value_type` (string): 值类型:`NUMBER` / `STRING` / `BOOL` / `FORMULA` / `ERROR` / `TIME_STRING` / `RICH_STRING`
- `number_value` (double): 数值
- `string_value` (string): 字符串值
- `bool_value` (bool): 布尔值
- `formula` (string): 公式
---
## 19. get_merged_cells
### 功能说明
获取在线表格指定区域内与该区域相交的合并单元格信息返回合并单元格范围列表SHEET
### 调用示例
```json
{
"file_id": "sheet_1234567890",
"sheet_id": "sub_sheet_001",
"start_row": 0,
"start_col": 0,
"end_row": 9,
"end_col": 9
}
```
### 参数说明
- `file_id` (string, 可选): 文档 ID`file_url` 二选一
- `file_url` (string, 可选): 在线表格的URL链接`file_id` 二选一
- `sheet_id` (string, 必填): 子表 ID
- `start_row` (int64, 必填): 查询区域起始行索引0-based
- `start_col` (int64, 必填): 查询区域起始列索引0-based
- `end_row` (int64, 必填): 查询区域结束行索引
- `end_col` (int64, 必填): 查询区域结束列索引
### 返回值说明
```json
{
"merged_cells": [
"sub_sheet_001$A1:B2",
"sub_sheet_001$C3:D5"
]
}
```
- `merged_cells` (array): 与查询区域相交的合并单元格范围列表,格式为 `"SheetID$A1:B2"`列使用字母表示A=第0列B=第1列以此类推