# NocoDB

Free & open source Airtable alternative. NocoDB turns any database into a smart spreadsheet with REST APIs.

- **Category:** databases
- **Auth:** API_KEY, API_KEY
- **Composio Managed App Available?** N/A
- **Tools:** 27
- **Triggers:** 0
- **Slug:** `NOCODB`
- **Version:** 00000000_00

## Tools

### Get User Info

**Slug:** `NOCODB_AUTH_ME`

Tool to get authenticated user information including email, name, roles, and profile details. Use when you need to verify user authentication or retrieve the current user's profile information.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Forgot Password

**Slug:** `NOCODB_AUTH_PASSWORD_FORGOT`

Tool to initiate password reset process by sending a reset email to the user. Use when a user has forgotten their password and needs to receive a password reset link via email.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `email` | string | Yes | The email address of the registered user account. Must be a valid email format. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Sign Out User

**Slug:** `NOCODB_AUTH_SIGNOUT`

Tool to sign out the authenticated user and clear their refresh token from the database and cookie. Use when you need to invalidate a user's authentication session and log them out of the NocoDB application.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Sort Metadata

**Slug:** `NOCODB_DB_TABLE_SORT_GET`

Tool to retrieve sort configuration by ID from NocoDB. Use when you need to get details about how data is ordered in a specific view.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `sort_id` | string | Yes | Unique identifier of the sort configuration to retrieve |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update View Column

**Slug:** `NOCODB_DB_VIEW_COLUMN_UPDATE`

Tool to update a column configuration in a view. Use when you need to change column visibility, order, or width in a specific view.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `show` | boolean | No | Whether to show or hide the column in the view. Set to true to show, false to hide. |
| `order` | integer | No | The display order of the column in the view. Lower numbers appear first. |
| `width` | string | No | The width of the column when displayed in the view. Should be a string with 'px' suffix (e.g., '200px'). |
| `viewId` | string | Yes | The unique identifier of the view containing the column. An alphanumeric string prefixed with 'vw' or 'v'. |
| `columnId` | string | Yes | The unique identifier of the view column configuration to update. An alphanumeric string prefixed with 'nc'. This is the view column ID from the view columns list, not the table field ID. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete View

**Slug:** `NOCODB_DB_VIEW_DELETE`

Tool to delete a view from a NocoDB table. Use when you need to permanently remove a view. This action cannot be undone.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `viewId` | string | Yes | Unique View ID identifying the view to delete. An alphanumeric string prefixed with 'v' (e.g., vw_wtdg2meyig5l4q) with a maximum length of 20 characters. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Table View Row

**Slug:** `NOCODB_DB_VIEW_ROW_DELETE`

Tool to delete a specific row from a table view in NocoDB. Use when you need to remove a single record from a view.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `orgs` | string | No | Organization identifier. Defaults to 'noco' if not specified. |
| `rowId` | string | Yes | Unique identifier of the row to be deleted. |
| `baseName` | string | Yes | Name of the base/project containing the table. |
| `viewName` | string | Yes | Name of the view from which to delete the row. |
| `tableName` | string | Yes | Name of the table containing the row to delete. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Integration Info

**Slug:** `NOCODB_INTEGRATIONS_INFO`

Tool to retrieve metadata for a specific NocoDB integration by type and subtype. Use when you need to get integration configuration schema, display information, or available capabilities for an integration.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `type` | string | Yes | The category/type of integration (e.g., 'Database', 'ai'). Specifies the integration type classification. |
| `subType` | string | Yes | The specific variant within the integration type. For databases: 'pg' (PostgreSQL), 'mysql2' (MySQL), 'sqlite3' (SQLite), 'snowflake', 'databricks'. For AI: 'openai', etc. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Integrations

**Slug:** `NOCODB_INTEGRATIONS_LIST`

Tool to retrieve all available integrations in NocoDB. Use when you need to list all integrations including AI, authentication, sync, and workflow-node types.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Store Integration Configuration

**Slug:** `NOCODB_INTEGRATION_STORE`

Tool to store configuration for a NocoDB integration. Use when you need to save or update integration settings like API keys, models, or other configuration parameters.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `config` | object | Yes | Configuration object containing integration settings like API keys, models, and other parameters specific to the integration type |
| `integrationId` | string | Yes | Unique identifier for the integration to store configuration |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Workspaces

**Slug:** `NOCODB_LIST_WORKSPACES`

Tool to list all workspaces accessible to the authenticated user. Use when you need to discover workspace_id before base operations, primarily relevant for NocoDB Cloud or multi-workspace deployments.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Notification

**Slug:** `NOCODB_NOTIFICATION_DELETE`

Tool to delete a notification for the authenticated user. Use when you need to remove a notification. This performs a soft-delete operation.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `notificationId` | string | Yes | The unique identifier of the notification to delete. An alphanumeric string that uniquely identifies a specific notification for the authenticated user. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Notifications

**Slug:** `NOCODB_NOTIFICATION_LIST`

Tool to retrieve paginated notification records for the authenticated user. Use when you need to list notifications with optional filtering by read status and pagination support. Only returns notifications that haven't been soft-deleted.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `limit` | integer | No | Maximum number of notifications to return per request. Defaults to 10 if not specified. |
| `isRead` | boolean | No | Filter notifications by read status. Pass true for read notifications, false for unread. If omitted, returns all notifications. |
| `offset` | integer | No | Number of notifications to skip for pagination. Defaults to 0 if not specified. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Poll Notifications

**Slug:** `NOCODB_NOTIFICATION_POLL`

Tool to poll for notifications using long-polling mechanism. Use when you need to check for new notifications for the authenticated user. The connection is maintained for up to 30 seconds; if no notification arrives, returns status 'refresh' and the client should poll again.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Plugin Status

**Slug:** `NOCODB_PLUGIN_STATUS`

Tool to check if a NocoDB plugin is active or not. Use when you need to verify the operational status of a specific plugin by its identifier.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `pluginId` | string | Yes | Unique identifier for the plugin to check status (e.g., 'S3', 'SES', 'Backblaze', 'Vultr', 'OvhCloud', 'LinodeObjectStorage', 'UpcloudObjectStorage', 'Minio', 'GCS', 'Spaces', 'Scaleway'). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Public Shared View Grouped Data

**Slug:** `NOCODB_PUBLIC_GROUPED_DATA_LIST`

Tool to retrieve grouped data from a publicly shared NocoDB view. Use when you need to access grouped records from a public shared view without authentication.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `sort` | string | No | Sort order for the grouped data. Format: columnName for ascending, -columnName for descending. |
| `limit` | integer | No | Maximum number of grouped records to return. Used for pagination. |
| `where` | string | No | Filter condition to apply on the data in URL-encoded format. |
| `offset` | integer | No | Number of records to skip before starting to return results. Used for pagination. |
| `columnId` | string | Yes | Unique identifier of the column to group data by. |
| `sharedViewUuid` | string | Yes | Unique identifier (UUID) of the public shared view to retrieve grouped data from. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Upload Attachments by URL

**Slug:** `NOCODB_STORAGE_UPLOAD_BY_URL`

Tool to upload attachments from remote URLs to NocoDB storage. Use when you need to import files from external URLs or migrate attachments from other platforms like Airtable. The server fetches files from provided URLs and stores them in configured storage.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `path` | string | No | Storage path/scope for the uploaded files |
| `attachments` | array | Yes | Array of attachment objects to upload from URLs. Each object must contain at least a 'url' field. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Table Schema

**Slug:** `NOCODB_TABLE_READ`

Tool to retrieve complete schema information for a specific table. Use when you need to understand table structure, field definitions, or available views.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `base_id` | string | Yes | Unique identifier for the base containing the table |
| `table_id` | string | Yes | Unique identifier for the table to retrieve |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update User Profile

**Slug:** `NOCODB_USER_PROFILE_UPDATE`

Tool to update authenticated user's profile information including display name, first name, and last name. Use when you need to modify the current user's profile details in NocoDB.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `lastname` | string | No | User's last name. |
| `firstname` | string | No | User's first name. |
| `display_name` | string | No | The display name for the user. Used to update how the user's name appears in the interface. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Aggregated Meta Info

**Slug:** `NOCODB_UTILS_AGGREGATED_META_INFO`

Tool to get aggregated meta information such as tableCount, dbViewCount, viewCount and other statistics about the NocoDB instance. Use when you need an overview of the system's data structure and usage metrics.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Application Health Status

**Slug:** `NOCODB_UTILS_APP_HEALTH`

Tool to get the NocoDB application health status. Use when you need to check if the application is running and responsive, typically for load balancers or monitoring systems.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Application Info

**Slug:** `NOCODB_UTILS_APP_INFO`

Tool to get comprehensive NocoDB application information including authentication settings, version, limits, and deployment configuration. Use when you need to discover application capabilities, feature flags, or system configuration.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Cloud Features

**Slug:** `NOCODB_UTILS_CLOUD_FEATURES`

Tool to get NocoDB Cloud features. Use when you need to retrieve available cloud-specific features and capabilities, including their availability status and highlight information.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Command Palette Suggestions

**Slug:** `NOCODB_UTILS_COMMAND_PALETTE`

Tool to get dynamic command palette suggestions based on scope. Use when you need to retrieve available commands and actions for the NocoDB interface.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `query` | string | No | Optional search query to filter command suggestions. |
| `scope` | string | No | Optional scope to filter command palette suggestions. Determines the context for available commands. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Report Error

**Slug:** `NOCODB_UTILS_ERROR_REPORT`

Tool to report errors to NocoDB's error tracking system. Use when you need to submit error reports including error type, message, stack trace, and timestamp for monitoring and debugging purposes.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `error` | string | Yes | Error name or type identifier. Provides a concise label for the error category. |
| `stack` | string | No | Stack trace or call stack showing the sequence of function calls leading to the error. Helps in debugging. |
| `message` | string | Yes | Detailed error message describing what went wrong. Should be human-readable and informative. |
| `timestamp` | string | No | ISO 8601 timestamp indicating when the error occurred. If not provided, the server may use current time. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Product Feed

**Slug:** `NOCODB_UTILS_FEED`

Tool to get NocoDB product feed from social media sources including GitHub, YouTube, Twitter, and Cloud. Use when you need to retrieve social media updates and content from NocoDB's various channels. Supports filtering by feed source and pagination.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. Must be >= 1. |
| `type` | string ("github" | "youtube" | "twitter" | "cloud" | "all") | No | Specifies the feed source to retrieve. Valid values: 'github', 'youtube', 'twitter', 'cloud', or 'all'. |
| `per_page` | integer | No | Number of items per page. Must be between 1 and 100. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Convert URL to Database Config

**Slug:** `NOCODB_UTILS_URL_TO_CONFIG`

Tool to convert JDBC URL or database connection URL to connection configuration object. Use when you need to parse and extract database connection parameters from a URL string for configuration purposes.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `url` | string | Yes | Database connection URL in JDBC format or standard format (e.g., 'jdbc:mysql://localhost:3306/mydb?user=root&password=test', 'pg://user:pass@host:5432/dbname', 'sqlite://path/to/db.db'). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Workspace Bases

**Slug:** `NOCODB_WORKSPACE_BASE_LIST`

Tool to list all bases in a NocoDB workspace. Use when you need to retrieve bases associated with a specific workspace. Supports pagination via page and pageSize parameters.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | integer | No | Current page number for pagination. Must be >= 1. |
| `pageSize` | integer | No | Number of items per page. Defaults to 25 if not specified. |
| `workspaceId` | string | Yes | Unique identifier for the workspace to list bases from. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |
