Loading...
npm install
npm run build{
"mcpServers": {
"nocodb": {
"command": "node",
"args": ["{working_folder}/dist/start.js"],
"env": {
"NOCODB_URL": "https://your-nocodb-instance.com",
"NOCODB_BASE_ID": "your_base_id_here",
"NOCODB_API_TOKEN": "your_api_token_here"
}
}
}
}Get RecordsRetrieves data from a specified table in the NocoDB database.
Read-only operation, no data modification.
Create RecordAdds a new row of data to a specified table in the NocoDB database.
Adds data to the database, but does not modify existing data.
Update RecordModifies existing rows in a specified table in the NocoDB database.
Changes existing data in the database.
Delete RecordRemoves rows from a specified table in the NocoDB database.
Deletes data from the database.
Add ColumnAdds a new column to a specified table in the NocoDB database.
Modifies the database schema.
Delete ColumnRemoves a column from a specified table in the NocoDB database.
Deletes a column from the database schema.
Create tableCreates a new table in the NocoDB database from a JSON file.
Modifies the database schema by creating a new table.