add_worksheet
Add a new worksheet to an existing Excel workbook by specifying the file path and sheet name using the Excel MCP Server tool.
Instructions
既存のワークブックにワークシートを追加します
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | 対象のExcelファイルの絶対パス。既存のファイルである必要があります | |
sheetName | Yes | 作成するワークシート名。英数字、日本語、アンダースコア、ハイフンが使用可能です |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePath": {
"description": "対象のExcelファイルの絶対パス。既存のファイルである必要があります",
"type": "string"
},
"sheetName": {
"description": "作成するワークシート名。英数字、日本語、アンダースコア、ハイフンが使用可能です",
"type": "string"
}
},
"required": [
"filePath",
"sheetName"
],
"type": "object"
}