NocoDB
nocodbFree & open source Airtable alternative. NocoDB turns any database into a smart spreadsheet with REST APIs.
Acciones disponibles (27)
Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.
Get User InfoNOCODB_AUTH_MEAcciónTool 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.
NOCODB_AUTH_MEAcciónTool 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.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Forgot PasswordNOCODB_AUTH_PASSWORD_FORGOTAcciónTool 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.
NOCODB_AUTH_PASSWORD_FORGOTAcciónTool 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.
Parámetros de entrada
emailstringObligatorioThe email address of the registered user account. Must be a valid email format.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Sign Out UserNOCODB_AUTH_SIGNOUTAcciónTool 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.
NOCODB_AUTH_SIGNOUTAcciónTool 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.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Sort MetadataNOCODB_DB_TABLE_SORT_GETAcciónTool to retrieve sort configuration by ID from NocoDB. Use when you need to get details about how data is ordered in a specific view.
NOCODB_DB_TABLE_SORT_GETAcciónTool to retrieve sort configuration by ID from NocoDB. Use when you need to get details about how data is ordered in a specific view.
Parámetros de entrada
sort_idstringObligatorioUnique identifier of the sort configuration to retrieve
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update View ColumnNOCODB_DB_VIEW_COLUMN_UPDATEAcciónTool to update a column configuration in a view. Use when you need to change column visibility, order, or width in a specific view.
NOCODB_DB_VIEW_COLUMN_UPDATEAcciónTool to update a column configuration in a view. Use when you need to change column visibility, order, or width in a specific view.
Parámetros de entrada
showbooleanWhether to show or hide the column in the view. Set to true to show, false to hide.
orderintegerThe display order of the column in the view. Lower numbers appear first.
widthstringThe width of the column when displayed in the view. Should be a string with 'px' suffix (e.g., '200px').
viewIdstringObligatorioThe unique identifier of the view containing the column. An alphanumeric string prefixed with 'vw' or 'v'.
columnIdstringObligatorioThe 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.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete ViewNOCODB_DB_VIEW_DELETEAcciónTool to delete a view from a NocoDB table. Use when you need to permanently remove a view. This action cannot be undone.
NOCODB_DB_VIEW_DELETEAcciónTool to delete a view from a NocoDB table. Use when you need to permanently remove a view. This action cannot be undone.
Parámetros de entrada
viewIdstringObligatorioUnique View ID identifying the view to delete. An alphanumeric string prefixed with 'v' (e.g., vw_wtdg2meyig5l4q) with a maximum length of 20 characters.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete Table View RowNOCODB_DB_VIEW_ROW_DELETEAcciónTool to delete a specific row from a table view in NocoDB. Use when you need to remove a single record from a view.
NOCODB_DB_VIEW_ROW_DELETEAcciónTool to delete a specific row from a table view in NocoDB. Use when you need to remove a single record from a view.
Parámetros de entrada
orgsstringOrganization identifier. Defaults to 'noco' if not specified.
rowIdstringObligatorioUnique identifier of the row to be deleted.
baseNamestringObligatorioName of the base/project containing the table.
viewNamestringObligatorioName of the view from which to delete the row.
tableNamestringObligatorioName of the table containing the row to delete.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Integration InfoNOCODB_INTEGRATIONS_INFOAcciónTool 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.
NOCODB_INTEGRATIONS_INFOAcciónTool 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.
Parámetros de entrada
typestringObligatorioThe category/type of integration (e.g., 'Database', 'ai'). Specifies the integration type classification.
subTypestringObligatorioThe specific variant within the integration type. For databases: 'pg' (PostgreSQL), 'mysql2' (MySQL), 'sqlite3' (SQLite), 'snowflake', 'databricks'. For AI: 'openai', etc.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List IntegrationsNOCODB_INTEGRATIONS_LISTAcciónTool to retrieve all available integrations in NocoDB. Use when you need to list all integrations including AI, authentication, sync, and workflow-node types.
NOCODB_INTEGRATIONS_LISTAcciónTool to retrieve all available integrations in NocoDB. Use when you need to list all integrations including AI, authentication, sync, and workflow-node types.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Store Integration ConfigurationNOCODB_INTEGRATION_STOREAcciónTool 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.
NOCODB_INTEGRATION_STOREAcciónTool 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.
Parámetros de entrada
configobjectObligatorioConfiguration object containing integration settings like API keys, models, and other parameters specific to the integration type
integrationIdstringObligatorioUnique identifier for the integration to store configuration
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete NotificationNOCODB_NOTIFICATION_DELETEAcciónTool to delete a notification for the authenticated user. Use when you need to remove a notification. This performs a soft-delete operation.
NOCODB_NOTIFICATION_DELETEAcciónTool to delete a notification for the authenticated user. Use when you need to remove a notification. This performs a soft-delete operation.
Parámetros de entrada
notificationIdstringObligatorioThe unique identifier of the notification to delete. An alphanumeric string that uniquely identifies a specific notification for the authenticated user.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List NotificationsNOCODB_NOTIFICATION_LISTAcciónTool 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.
NOCODB_NOTIFICATION_LISTAcciónTool 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.
Parámetros de entrada
limitintegerMaximum number of notifications to return per request. Defaults to 10 if not specified.
isReadbooleanFilter notifications by read status. Pass true for read notifications, false for unread. If omitted, returns all notifications.
offsetintegerNumber of notifications to skip for pagination. Defaults to 0 if not specified.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Poll NotificationsNOCODB_NOTIFICATION_POLLAcciónTool 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.
NOCODB_NOTIFICATION_POLLAcciónTool 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.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Plugin StatusNOCODB_PLUGIN_STATUSAcciónTool 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.
NOCODB_PLUGIN_STATUSAcciónTool 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.
Parámetros de entrada
pluginIdstringObligatorioUnique identifier for the plugin to check status (e.g., 'S3', 'SES', 'Backblaze', 'Vultr', 'OvhCloud', 'LinodeObjectStorage', 'UpcloudObjectStorage', 'Minio', 'GCS', 'Spaces', 'Scaleway').
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List Public Shared View Grouped DataNOCODB_PUBLIC_GROUPED_DATA_LISTAcciónTool 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.
NOCODB_PUBLIC_GROUPED_DATA_LISTAcciónTool 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.
Parámetros de entrada
sortstringSort order for the grouped data. Format: columnName for ascending, -columnName for descending.
limitintegerMaximum number of grouped records to return. Used for pagination.
wherestringFilter condition to apply on the data in URL-encoded format.
offsetintegerNumber of records to skip before starting to return results. Used for pagination.
columnIdstringObligatorioUnique identifier of the column to group data by.
sharedViewUuidstringObligatorioUnique identifier (UUID) of the public shared view to retrieve grouped data from.
Parámetros de salida
dataobject[]ObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Upload Attachments by URLNOCODB_STORAGE_UPLOAD_BY_URLAcciónTool 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.
NOCODB_STORAGE_UPLOAD_BY_URLAcciónTool 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.
Parámetros de entrada
pathstringStorage path/scope for the uploaded files
attachmentsobject[]ObligatorioArray of attachment objects to upload from URLs. Each object must contain at least a 'url' field.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Table SchemaNOCODB_TABLE_READAcciónTool to retrieve complete schema information for a specific table. Use when you need to understand table structure, field definitions, or available views.
NOCODB_TABLE_READAcciónTool to retrieve complete schema information for a specific table. Use when you need to understand table structure, field definitions, or available views.
Parámetros de entrada
base_idstringObligatorioUnique identifier for the base containing the table
table_idstringObligatorioUnique identifier for the table to retrieve
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update User ProfileNOCODB_USER_PROFILE_UPDATEAcciónTool 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.
NOCODB_USER_PROFILE_UPDATEAcciónTool 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.
Parámetros de entrada
lastnamestringUser's last name.
firstnamestringUser's first name.
display_namestringThe display name for the user. Used to update how the user's name appears in the interface.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Aggregated Meta InfoNOCODB_UTILS_AGGREGATED_META_INFOAcciónTool 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.
NOCODB_UTILS_AGGREGATED_META_INFOAcciónTool 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.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Application Health StatusNOCODB_UTILS_APP_HEALTHAcciónTool 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.
NOCODB_UTILS_APP_HEALTHAcciónTool 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.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Application InfoNOCODB_UTILS_APP_INFOAcciónTool 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.
NOCODB_UTILS_APP_INFOAcciónTool 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.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Cloud FeaturesNOCODB_UTILS_CLOUD_FEATURESAcciónTool to get NocoDB Cloud features. Use when you need to retrieve available cloud-specific features and capabilities, including their availability status and highlight information.
NOCODB_UTILS_CLOUD_FEATURESAcciónTool to get NocoDB Cloud features. Use when you need to retrieve available cloud-specific features and capabilities, including their availability status and highlight information.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Command Palette SuggestionsNOCODB_UTILS_COMMAND_PALETTEAcciónTool to get dynamic command palette suggestions based on scope. Use when you need to retrieve available commands and actions for the NocoDB interface.
NOCODB_UTILS_COMMAND_PALETTEAcciónTool to get dynamic command palette suggestions based on scope. Use when you need to retrieve available commands and actions for the NocoDB interface.
Parámetros de entrada
querystringOptional search query to filter command suggestions.
scopestringOptional scope to filter command palette suggestions. Determines the context for available commands.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Report ErrorNOCODB_UTILS_ERROR_REPORTAcciónTool 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.
NOCODB_UTILS_ERROR_REPORTAcciónTool 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.
Parámetros de entrada
errorstringObligatorioError name or type identifier. Provides a concise label for the error category.
stackstringStack trace or call stack showing the sequence of function calls leading to the error. Helps in debugging.
messagestringObligatorioDetailed error message describing what went wrong. Should be human-readable and informative.
timestampstringISO 8601 timestamp indicating when the error occurred. If not provided, the server may use current time.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Product FeedNOCODB_UTILS_FEEDAcciónTool 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.
NOCODB_UTILS_FEEDAcciónTool 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.
Parámetros de entrada
pageintegerPage number for pagination. Must be >= 1.
typestringenumSpecifies the feed source to retrieve. Valid values: 'github', 'youtube', 'twitter', 'cloud', or 'all'.
githubyoutubetwittercloudallper_pageintegerNumber of items per page. Must be between 1 and 100.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Convert URL to Database ConfigNOCODB_UTILS_URL_TO_CONFIGAcciónTool 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.
NOCODB_UTILS_URL_TO_CONFIGAcciónTool 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.
Parámetros de entrada
urlstringObligatorioDatabase 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').
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List Workspace BasesNOCODB_WORKSPACE_BASE_LISTAcciónTool 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.
NOCODB_WORKSPACE_BASE_LISTAcciónTool 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.
Parámetros de entrada
pageintegerCurrent page number for pagination. Must be >= 1.
pageSizeintegerNumber of items per page. Defaults to 25 if not specified.
workspaceIdstringObligatorioUnique identifier for the workspace to list bases from.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not