We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tulip/tulip-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
incrementTableRecordField.json•997 B
{
"name": "incrementTableRecordField",
"description": "Increments/decrements a field in a table record. Corresponds to PATCH /tables/{tableId}/records/{recordId}/increment. Requires `tables:write` scope. [WRITE]",
"inputSchema": {
"type": "object",
"properties": {
"tableId": {
"type": "string",
"description": "The ID of the table"
},
"recordId": {
"type": "string",
"description": "The ID of the record"
},
"fieldName": {
"type": "string",
"description": "The field (column) to increment or decrement."
},
"value": {
"type": "number",
"description": "The amount to increment or decrement, can be positive or negative"
}
},
"required": [
"tableId",
"recordId",
"fieldName",
"value"
]
},
"category": "write",
"type": "table",
"dangerous": false,
"httpType": "PATCH",
"url": "/tables/:tableId/records/:recordId/increment"
}