Glide API MCP Server

get_table_rows

Get rows from a table in a Glide app

Input Schema

NameRequiredDescriptionDefault
appIdYesID of the Glide app
limitNoMaximum number of rows to return
offsetNoNumber of rows to skip
tableIdYesID of the table

Input Schema (JSON Schema)

{ "properties": { "appId": { "description": "ID of the Glide app", "type": "string" }, "limit": { "description": "Maximum number of rows to return", "minimum": 1, "type": "number" }, "offset": { "description": "Number of rows to skip", "minimum": 0, "type": "number" }, "tableId": { "description": "ID of the table", "type": "string" } }, "required": [ "appId", "tableId" ], "type": "object" }