Skip to main content
Glama

Excel MCP Server

set_range_values

Set 2D array data in a specified Excel range using file path, sheet name, start cell, and values to populate cells systematically.

Instructions

指定された範囲に2次元配列のデータを設定します

Input Schema

NameRequiredDescriptionDefault
filePathYes対象のExcelファイルの絶対パス
sheetNameYes対象のワークシート名
startCellYesデータ入力を開始するセル位置(例: A1)。ここから右下方向にデータが入力されます
valuesYes2次元配列のデータ。外側の配列が行、内側の配列が列を表します。例: [["商品名", "価格"], ["商品A", 1000]]

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "filePath": { "description": "対象のExcelファイルの絶対パス", "type": "string" }, "sheetName": { "description": "対象のワークシート名", "type": "string" }, "startCell": { "description": "データ入力を開始するセル位置(例: A1)。ここから右下方向にデータが入力されます", "type": "string" }, "values": { "description": "2次元配列のデータ。外側の配列が行、内側の配列が列を表します。例: [[\"商品名\", \"価格\"], [\"商品A\", 1000]]", "items": { "items": { "type": [ "string", "number", "boolean" ] }, "type": "array" }, "type": "array" } }, "required": [ "filePath", "sheetName", "startCell", "values" ], "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/SuperPyonchiX/excel_mcp_server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server