update_table_row
Modify specific row data in a Glide app table by providing the app ID, table ID, row ID, and updated column values through the Glide API MCP Server.
Instructions
Update an existing row in a table
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appId | Yes | ID of the Glide app | |
| rowId | Yes | ID of the row to update | |
| tableId | Yes | ID of the table | |
| values | Yes | New column values for the row |
Implementation Reference
- src/index.ts:343-358 (handler)The handler function for the 'update_table_row' tool. It extracts parameters from the request, makes a POST request to the Glide API to update the specified row in the table, and returns the JSON response.case 'update_table_row': { const { appId, tableId, rowId, values } = request.params.arguments as { appId: string; tableId: string; rowId: string; values: Record<string, any>; }; const result = await this.apiClient.makeRequest( 'POST', `/apps/${appId}/tables/${tableId}/rows/${rowId}`, values ); return { content: [{ type: 'text', text: JSON.stringify(result, null, 2) }], }; }
- src/index.ts:218-243 (registration)Registration of the 'update_table_row' tool in the listTools response, including its name, description, and detailed input schema definition.name: 'update_table_row', description: 'Update an existing row in a table', inputSchema: { type: 'object', properties: { appId: { type: 'string', description: 'ID of the Glide app', }, tableId: { type: 'string', description: 'ID of the table', }, rowId: { type: 'string', description: 'ID of the row to update', }, values: { type: 'object', description: 'New column values for the row', additionalProperties: true, }, }, required: ['appId', 'tableId', 'rowId', 'values'], }, },
- src/index.ts:220-242 (schema)Input schema definition for the 'update_table_row' tool, specifying parameters appId, tableId, rowId, and values object.inputSchema: { type: 'object', properties: { appId: { type: 'string', description: 'ID of the Glide app', }, tableId: { type: 'string', description: 'ID of the table', }, rowId: { type: 'string', description: 'ID of the row to update', }, values: { type: 'object', description: 'New column values for the row', additionalProperties: true, }, }, required: ['appId', 'tableId', 'rowId', 'values'], },