get_range_values
Extract specific data ranges from Excel sheets by specifying file path, sheet name, and range (e.g., A1:C10). Streamlines data retrieval for analysis or processing through the Excel MCP Server.
Instructions
指定された範囲のデータを取得します
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | 対象のExcelファイルの絶対パス | |
range | Yes | 取得する範囲。A1:C3形式で指定(例: A1:C10, B2:D5) | |
sheetName | Yes | 対象のワークシート名 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePath": {
"description": "対象のExcelファイルの絶対パス",
"type": "string"
},
"range": {
"description": "取得する範囲。A1:C3形式で指定(例: A1:C10, B2:D5)",
"type": "string"
},
"sheetName": {
"description": "対象のワークシート名",
"type": "string"
}
},
"required": [
"filePath",
"sheetName",
"range"
],
"type": "object"
}