getSpreadsheet
Retrieve basic information and list of sheets from a Google Spreadsheet using the provided URL via the Spreadsheet MCP Server.
Instructions
スプレッドシートの基本情報と含まれるシート一覧を取得
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | スプレッドシートのURL |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"url": {
"description": "スプレッドシートのURL",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}