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
createTableRecord.json•657 B
{
"name": "createTableRecord",
"description": "Creates a new record in a Tulip Table. Corresponds to POST /tables/{tableId}/records. Requires `tables:write` scope. [WRITE]",
"inputSchema": {
"type": "object",
"properties": {
"tableId": {
"type": "string",
"description": "The ID of the table to create record in"
},
"recordData": {
"type": "object",
"description": "Record data to create"
}
},
"required": [
"tableId",
"recordData"
]
},
"category": "write",
"type": "table",
"dangerous": false,
"httpType": "POST",
"url": "/tables/:tableId/records"
}