productivity
NocoDB MCP, CLI, and Lua Integration for AI Agents
NocoDB integration docs for AI agents: MCP gateway setup, NocoDB CLI commands, Lua API reference, credentials, and function schemas.
15 functions 8 read 7 write API token auth
NocoDB for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Machine-Readable Metadata
- integration_slug
nocodb- route_slug
nocodb- package
nocodb- auth_strategy
api_tokenAPI token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. NocoDB CLIHeadless setup and direct function calls. NocoDB MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
NocoDB MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for NocoDB.
Claude Code NocoDB MCP setup for Claude Code. Cursor NocoDB MCP setup for Cursor. Codex NocoDB MCP setup for Codex. OpenAI Agents NocoDB MCP setup for OpenAI Agents SDK. Claude Agent SDK NocoDB MCP setup for Claude Agent SDK. Vercel AI SDK NocoDB MCP setup for Vercel AI SDK. LangChain NocoDB MCP setup for LangChain. LangGraph NocoDB MCP setup for LangGraph. CrewAI NocoDB MCP setup for CrewAI. MCP clients NocoDB MCP setup for Generic MCP Clients.
NocoDB CLI Matrix
Use these pages for direct NocoDB CLI workflows in scripts, CI, cron, and agent wrappers.
CI NocoDB CLI for CI. Cron Jobs NocoDB CLI for cron jobs. Shell Scripts NocoDB CLI for shell scripts. Headless Automation NocoDB CLI for headless automation. Coding Agents NocoDB CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
nocodb.nocodb_list_records | Read read | 7 | List records from a NocoDB table with optional filtering, sorting, and pagination. |
nocodb.nocodb_get_record | Read read | 3 | Get a single NocoDB record by ID. |
nocodb.nocodb_create_record | Write write | 2 | Create a new record in a NocoDB table. |
nocodb.nocodb_update_record | Write write | 3 | Update an existing NocoDB record. |
nocodb.nocodb_delete_record | Write write | 2 | Delete a record from a NocoDB table. |
nocodb.nocodb_batch_create | Write write | 2 | Create multiple records in a single NocoDB API request. |
nocodb.nocodb_batch_update | Write write | 2 | Update multiple records in a single NocoDB API request. |
nocodb.nocodb_batch_delete | Write write | 2 | Delete multiple records in a single NocoDB API request. |
nocodb.nocodb_list_bases | Read read | 0 | List all NocoDB bases the token has access to. |
nocodb.nocodb_get_base | Read read | 1 | Get details of a single NocoDB base. |
nocodb.nocodb_list_tables | Read read | 1 | List all tables in a NocoDB base. |
nocodb.nocodb_get_table | Read read | 1 | Get details of a single NocoDB table. |
nocodb.nocodb_create_table | Write write | 3 | Create a new table in a NocoDB base. |
nocodb.nocodb_list_views | Read read | 1 | List views for a NocoDB table. |
nocodb.nocodb_count_records | Read read | 2 | Count records in a NocoDB table with optional filtering. |