get_workbook_info
Retrieve detailed information from an Excel workbook, including sheet lists and metadata, specified by file path using the MCP Server.
Instructions
Excelワークブックの詳細情報を取得します(シート一覧、メタデータ等)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | 情報を取得するExcelファイルの絶対パス |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePath": {
"description": "情報を取得するExcelファイルの絶対パス",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}