You're viewing a demo portfolio

Join the waitlist
PRSM

sheets_write

Active

Tool of Google_sheets

declared in 0.1.0

Write data to a Google Sheet range, overwriting existing values. Specify sheet name, range (e.g., 'A1:C10'), and row data.

Parameters schema

{
  "type": "object",
  "examples": [
    {
      "range": "Sheet1!A1",
      "values": [
        [
          "Name",
          "Age",
          "City"
        ],
        [
          "Alice",
          "30",
          "New York"
        ],
        [
          "Bob",
          "25",
          "Los Angeles"
        ]
      ],
      "spreadsheet_id": "1BxiMVs0XRA5nFMmqvzausWYMYq6nS8twLu0gKBvMZsk"
    },
    {
      "range": "Data!B2:C5",
      "values": [
        [
          "100",
          "200"
        ],
        [
          "300",
          "400"
        ]
      ],
      "spreadsheet_id": "1BxiMVs0XRA5nFMmqvzausWYMYq6nS8twLu0gKBvMZsk",
      "value_input_option": "USER_ENTERED"
    }
  ],
  "required": [
    "spreadsheet_id",
    "range",
    "values"
  ],
  "properties": {
    "range": {
      "type": "string",
      "description": "A1 notation range (e.g., \"Sheet1!A1\")"
    },
    "values": {
      "type": "array",
      "items": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "description": "Array of rows, each row is an array of cell values"
    },
    "spreadsheet_id": {
      "type": "string",
      "description": "Spreadsheet ID"
    },
    "value_input_option": {
      "enum": [
        "USER_ENTERED",
        "RAW"
      ],
      "type": "string",
      "description": "How to interpret input. USER_ENTERED (default) parses formulas/dates/numbers. RAW stores literal strings."
    }
  }
}

What this tool wraps· 1 endpoint

min confidence0.700.50

Parent server

Google_sheets

https://github.com/pipeworx-io/mcp-google_sheets

1/7 registries
View full server →
sheets_write — Google_sheets — PRSM MCP