edwin bernadus/nocodb-mcp-server
Built by Metorial, the integration platform for agentic AI.
edwin bernadus/nocodb-mcp-server
Nocodb - Get Recordshint: 1. Get all records from a table (limited to 10): retrieve_records(table_name="customers") 3. Filter records with conditions: retrieve_records( table_name="customers", filters="(age,gt,30)~and(status,eq,active)" ) 4. Paginate results: retrieve_records(table_name="customers", limit=20, offset=40) 5. Sort results: retrieve_records(table_name="customers", sort="-created_at") 6. Select specific fields: retrieve_records(table_name="customers", fields="id,name,email")
Nocodb - Get List Tables notes: only show result from output to user
Nocodb - Post Records
Nocodb - Post Records Multiple Records
Nocodb - Patch Records
Nocodb - Delete Records
Nocodb - Delete Records Multiple Records
Nocodb - Get Table Metadata
Nocodb - Alter Table Add Column
Nocodb - Alter Table Remove Column get columnId from getTableMetadata notes: remove column by columnId example: c7uo2ruwc053a3a [WARNING] this action is irreversible [RECOMMENDATION] give warning to user
Nocodb - Create Table