Metabase is an open-source business intelligence tool that lets you ask questions about your data and visualize answers as charts, graphs, and dashboards.
Metabase is an open-source business intelligence tool that lets you ask questions about your data and visualize answers as charts, graphs, and dashboards. On Nagent, Metabase is exposed as a fully-configurable business intelligence integration that any agent can call — 194 actions, and API key authentication. No code is required to wire Metabase into your workflow — connect it once via the External Integrations panel and reuse it across every agent you build.
Agent builders use Metabase to automate the kinds of tasks business intelligence teams previously handled manually. Concrete examples — each one is a single agent step in Nagent — include:
Every action and trigger is paired with a structured input/output schema (visible in the sections below), so when you wire Metabase into Helix — our agentic agent builder — the editor knows exactly what each step expects and produces. Configure once, deploy anywhere across your Nagent agents.
Every operation an agent can call against Metabase, with input parameters and output schema. Drop these into any step of an agent built in Helix.
METABASE_CREATE_BOOKMARKTool to create a new bookmark for a Metabase item (card, dashboard, collection, or dataset). Use when the user wants to bookmark a specific item for quick access.
Input parameters
The ID of the specific item to bookmark
The type of item to bookmark. Supported values: card (for questions/cards), dashboard, collection, or dataset
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_CREATE_CARD_PIVOT_QUERYTool to run a pivot table query on a Metabase card (question). Use when you need to execute the query associated with a specific card and get results formatted for pivot table visualization. The response includes data rows, column metadata, query status, and execution timing.
Input parameters
The ID of the card (question) to run the pivot query on
Optional query parameters for filtering. Format: \[{"type":"category","value":"value","target":\["variable",\["template-tag","tag-name"\]\]}\]
Optional parameter to ignore cached results and force a fresh query execution
Optional parameter for collection preview mode
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_CREATE_CARD_QUERY1Tool to run the query associated with a Card and return its results. Use when you need to execute a card's query with optional parameters and cache control.
Input parameters
ID of the card to query
Query parameters to apply. Format: \[{"type":"category","value":"value","target":\["variable",\["template-tag","tag-name"\]\]}\]
Whether to bypass query cache and force fresh query execution
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_CREATE_DASHBOARD_COPYTool to create a copy of an existing Metabase dashboard. Use when you need to duplicate a dashboard with optional customization of name, description, and collection placement. Supports both shallow copy (references same cards) and deep copy (duplicates all cards).
Input parameters
Optional name for the copied dashboard. Must be a non-blank string if provided
Optional description for the copied dashboard
Set to true to create a deep copy that duplicates all questions/cards in the dashboard. Required when the dashboard contains Dashboard Questions. Default is false (shallow copy)
Optional collection ID where the copied dashboard should be placed. Must be greater than zero if provided
The ID of the dashboard to copy
Optional position within the collection. Must be greater than zero if provided
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_CREATE_DASHBOARD_PIVOT_DASHCARD_CARDTool to run a pivot table query for a specific DashCard. Use when you need to execute a pivot table query on a dashboard card with optional parameter filters.
Input parameters
The ID of the card (question) associated with the dashcard. This identifies the underlying query.
Optional array of dashboard parameters to filter the query results. Each parameter can specify filtering criteria for the pivot table data.
The ID of the dashcard within the dashboard. This is the specific card instance on the dashboard.
The ID of the dashboard containing the pivot table card
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_CREATE_DASHBOARD_SAVE_COLLECTIONTool to save a denormalized dashboard description into a collection. Use when you need to create a new dashboard directly in a specific collection with full configuration including cards, tabs, and parameters.
Input parameters
Dashboard name
Array of dashboard tabs for organizing cards
Dashboard width setting. Typically 'fixed' or 'full'
Dashboard caveats or important notes
Whether the dashboard is archived
Cache time-to-live in seconds
Array of dashboard cards. Each card represents a question/visualization on the dashboard
ID of the user creating the dashboard. Use the ID from /api/user/current endpoint
Array of dashboard parameters for filtering
Dashboard description
Parameters for embedding configuration
Whether embedding is enabled for this dashboard
Whether to automatically apply filters
Position within the collection
The ID of the parent collection where the dashboard will be saved
Whether to show this dashboard in the getting started section
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_CREATE_DATABASE_DISCARD_VALUESTool to discard all saved field values for a specific database. Use when you need to clear cached field value data for all fields in a database. Requires superuser privileges.
Input parameters
The ID of the database to discard field values for
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_CREATE_DATABASE_DISMISS_SPINNERTool to manually set the initial sync status of a Database and corresponding tables to complete. Use when you need to dismiss the synchronization spinner for a database after initial setup.
Input parameters
The ID of the database to dismiss the spinner for
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_CREATE_DATABASE_RESCAN_VALUESTool to trigger a manual scan of field values for a Database. Use when you need to refresh field values for filter dropdowns after data changes. Requires superuser permissions.
Input parameters
Database ID to rescan field values for. This is the unique identifier for the database in Metabase.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_CREATE_DATABASE_SYNC_SCHEMATool to trigger a manual update of the schema metadata for a Database. Use when you need to refresh the database schema metadata in Metabase after structural changes.
Input parameters
Database ID to sync schema for. This is the unique identifier for the database in Metabase.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_CREATE_DATASET_PARAMETER_SEARCHTool to search for parameter values in datasets when editing cards or dashboards. Use when you need to provide autocomplete functionality for parameters. Expects a query string and returns matching values.
Input parameters
The search query string to filter parameter values. Used for autocomplete functionality when editing cards or dashboards.
Array of field IDs to search parameter values from. These are database field IDs that the parameter is linked to.
Parameter configuration object containing the parameter id and type
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_CREATE_FIELD_DIMENSIONTool to set the dimension for a field at the specified ID in Metabase. Use when you need to configure field remapping or display values for better data presentation.
Input parameters
The ID of the field for which to set the dimension
A display name for the dimension (must be a non-blank string)
The type of dimension. Use 'external' for field remapping/display values (foreign key relationships) or 'internal' for internal dimension mappings
The ID of the field that should be displayed instead of the original field value. This field provides human-readable values for the current field
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_CREATE_FIELD_DISCARD_VALUESTool to discard the FieldValues belonging to a Metabase field. Use when you need to clear cached field values. Only applies to fields that have FieldValues. If the Field's Database is set up to automatically sync FieldValues, they will be recreated during the next sync.
Input parameters
The field ID whose FieldValues should be discarded. Only applies to fields that have FieldValues configured.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_CREATE_FIELD_VALUESTool to update field values and human-readable values for a Field whose semantic type is category/city/state/country or whose base type is type/Boolean. Use when you need to set or update the distinct values for a field along with optional human-readable remappings.
Input parameters
The field ID to update values for. Must be a field whose semantic type is category/city/state/country or whose base type is type/Boolean.
Array of arrays containing value mappings. Each inner array represents a mapping between original value and optional human-readable replacement. Format: \[\["original1", "readable1"\], \["original2", "readable2"\]\] or \[\["value1"\], \["value2"\]\] for values without human-readable replacements.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_CREATE_PERSIST_CARD_UNPERSISTTool to unpersist a Metabase card/model. Deletes the persisted table backing the model and all queries after this will use the card's query rather than the saved version. Use when you need to remove persistence from a model.
Input parameters
The ID of the card/model to unpersist. This deletes the persisted table backing the model.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_CREATE_PERSIST_DATABASE_UNPERSISTTool to disable model persistence for a Metabase database. Use when you need to turn off caching of model results. Returns success whether persistence was already disabled or not (idempotent operation).
Input parameters
The database ID to disable model persistence for
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_CREATE_TABLE_DISCARD_VALUESTool to discard the FieldValues belonging to the Fields in a Metabase Table. Use when you need to clear cached field values for all fields in a table. Only applies to fields that have FieldValues. If this Table's Database is set up to automatically sync FieldValues, they will be recreated during the next sync.
Input parameters
The ID of the table whose FieldValues should be discarded. Only applies to fields that have FieldValues. If this Table's Database is set up to automatically sync FieldValues, they will be recreated during the next sync.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_CREATE_TABLE_RESCAN_VALUESTool to manually trigger an update for FieldValues for Fields belonging to a specific Table. Use when you need to refresh field value caches after table data changes. Only applies to Fields that are eligible for FieldValues.
Input parameters
Table ID to rescan field values for. This triggers an update for FieldValues for Fields belonging to this Table.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_CREATE_TABLE_SYNC_SCHEMATool to trigger a manual update of the schema metadata for a specific Table. Use when you need to refresh table schema information after database changes. This synchronizes columns, data types, and other metadata from the underlying database.
Input parameters
The ID of the table to sync schema for. This initiates a synchronization process that refreshes the table's schema information including columns, data types, and other metadata from the underlying database.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_DELETE_API_ACTION_ACTION_IDTool to delete a Metabase action by its ID. Use when you need to permanently remove an action from the system.
Input parameters
The ID of the action to delete
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_DELETE_API_CACHETool to delete/clear cached data in Metabase for specific entities. Use when you need to invalidate cache for a database, dashboard, question, or clear all cache (root).
Input parameters
Type of entity to clear cache for. Must be one of: root (clear all cache), database, dashboard, or question
ID of the specific entity to clear cache for. Must be an integer greater than or equal to zero. Use 0 for root model type to clear all cache
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_DELETE_API_TIMELINE_IDTool to delete a timeline by ID. Use when you need to permanently remove a timeline. Returns success status on completion.
Input parameters
The ID of the timeline to delete
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_DELETE_BOOKMARKTool to delete a bookmark by model and ID. Use when you need to remove a bookmark assigned to the user making the request. The operation returns HTTP 204 No Content on successful deletion.
Input parameters
The ID of the model item to unbookmark
The model type - valid values are 'card' (for questions/cards), 'dashboard', or 'collection'
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_DELETE_CARDTool to hard delete a Metabase card. Use when you need to permanently remove a card from the system. For soft deletion, use PUT /api/card/:id instead.
Input parameters
The ID of the card to delete
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_DELETE_DASHBOARDTool to hard delete a Metabase dashboard by its ID. Use when you need to permanently remove a dashboard. This will also remove any questions/models/segments/metrics that use this database. For soft delete, use the update dashboard action instead.
Input parameters
The ID of the dashboard to delete. This will permanently remove the dashboard and any questions/models/segments/metrics that use this database
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_DELETE_EE_AUDIT_APP_USER_SUBSCRIPTIONSTool to delete all Alert and DashboardSubscription subscriptions for a User. Use when you need to remove all subscriptions for a specific user and archive alerts/dashboards they created. This is an enterprise feature requiring admin privileges or current user access.
Input parameters
The user ID whose subscriptions will be deleted. This will delete all Alert and DashboardSubscription subscriptions for the user (so they will no longer receive them) and archive all Alerts and DashboardSubscriptions created by the user.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_DELETE_FIELD_DIMENSIONTool to remove the dimension associated with a field at the specified ID. Use when you need to disassociate a dimension from a field in Metabase.
Input parameters
The ID of the field whose dimension association should be removed
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_DELETE_GLOSSARYTool to delete a glossary entry from Metabase. Use when you need to permanently remove a glossary entry by its ID.
Input parameters
The ID of the glossary entry to delete
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_DELETE_MODEL_INDEXTool to delete a ModelIndex by ID from Metabase. Use when you need to remove a model index from the system.
Input parameters
The ModelIndex ID to delete. Must be greater than zero.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_DELETE_TIMELINE_EVENTTool to delete a Metabase timeline event. Use when you need to permanently remove a timeline event from the system.
Input parameters
The ID of the timeline event to delete
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_DELETE_USER_KEY_VALUE_NAMESPACE_KEYTool to delete a user key-value pair by namespace and key. Use when you need to remove a specific key-value entry from a user's namespace.
Input parameters
The key identifier to delete from the namespace
The namespace identifier for the key-value pair
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_ACTIONTool to retrieve a Metabase action by ID. Use when you need to fetch details about a specific action including its configuration, parameters, and metadata.
Input parameters
The ID of the action to retrieve
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_ACTION_EXECUTETool to fetch values for filling in action execution parameters. Use when you need to get parameter values for executing an action by providing PK parameters and values to select.
Input parameters
The ID of the action to fetch execution parameters for
JSON string containing execution parameters. Pass PK parameters and values to select. Can be an empty object {} if no parameters are needed
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_ACTIONTool to retrieve all actions available in the Metabase instance. Actions are entities that let you build custom forms and business logic with parameterized SQL that writes back to your database. Returns an array of action objects including query, http, and implicit action types.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_ACTIVITY_POPULAR_ITEMSTool to get the list of 5 popular items on the Metabase instance. Use when you need to discover frequently accessed dashboards or cards. Returns both dashboards and cards with their metadata including name, description, parent collection, and timestamps.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_ACTIVITY_RECENT_VIEWSTool to retrieve recently viewed items in Metabase. Use when you need to get a list of cards, dashboards, collections, tables, or documents that the authenticated user has recently accessed. Returns metadata including timestamps and permissions for each viewed item.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_ALERTTool to retrieve all alerts in Metabase. Use when you need to get a list of all configured alerts with their settings and notification channels.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_AUTO_DASHBOARDS_DATABASE_ID_CANDIDATESTool to retrieve automagic dashboard candidates for a specific database. Use when you need to discover interesting tables and schemas for automatic dashboard generation. Returns an array of schema candidates with their tables, ordered by interestingness score.
Input parameters
Database ID to get automagic dashboard candidates for. This is the unique identifier of the database in Metabase.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_BOOKMARKTool to retrieve all bookmarks for the authenticated user. Use when you need to fetch bookmarked cards, dashboards, or collections.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_CARDTool to list all cards (questions) available to the authenticated user in Metabase. Use when you need to retrieve all saved questions, queries, or visualizations.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_CARD_CARD_ID_PARAMS_PARAM_KEY_SEARCH_QUERYTool to search for values of a specific parameter in a Metabase card. Use when you need to provide autocomplete/search functionality for card parameters (template tags). The card must have parameters defined with dimension/field filter type.
Input parameters
The search query string to filter parameter values. Used for autocomplete/search functionality.
The ID of the card containing the parameter to search. Must be a valid card with defined parameters.
The parameter key/name (template tag name) to search within. This must match a parameter defined in the card.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_CARD_IDTool to retrieve a specific card (question) by its ID. Use when you need to get detailed information about a card including its query, visualization settings, and metadata.
Input parameters
The Card identifier
When set to true, returns the card dataset_query in MBQL 4 (legacy) format instead of MBQL 5
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_COLLECTIONTool to retrieve all collections that the current user has read permissions for. Returns collections with can_write property indicating write permissions. Use when you need to list available collections or check collection permissions.
Input parameters
If true, returns archived collections. If false or omitted, returns non-archived collections. Must be a valid boolean.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_COLLECTION_IDTool to retrieve detailed information about a Metabase collection by its ID. Use when you need to get collection metadata, permissions, and hierarchy information. Accepts either a numeric collection ID or the string 'root' for the root collection.
Input parameters
The ID of the collection to retrieve. Can be a numeric ID (e.g., 1, 2) or the string 'root' for the root collection.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_COLLECTION_ID_ITEMSTool to retrieve items from a specific Metabase collection. Use when you need to list cards (questions), dashboards, nested collections, or pulses within a collection. Supports filtering by item type and archived status.
Input parameters
Collection ID to retrieve items from. This is the unique identifier for the collection in Metabase.
Maximum number of items to return per page. Used for pagination.
Filter results by object type. Use 'card' for questions, 'dashboard' for dashboards, 'collection' for nested collections, or 'pulse' for subscriptions/alerts.
Number of items to skip before returning results. Used for pagination in combination with limit.
Return archived items instead of unarchived ones. Use 'true' to get archived items or 'false' for active items. Defaults to false if not specified.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_COLLECTION_ROOTTool to fetch the Root Collection and its top-level objects. Use when you need to list items at the root level that the current user can access. Shows objects with no collection_id for users with Root Collection permissions, or objects with effective location of / for others.
Input parameters
Maximum number of items to return per page. Used for pagination.
Filter by model type. Valid values: 'card', 'collection', 'dashboard', 'pulse'
Number of items to skip before returning results. Used for pagination in combination with limit.
Filter by archived status. Must be a valid boolean string ('true' or 'false')
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_COLLECTION_TREETool to retrieve the collection tree structure from Metabase. Use when you need to view the hierarchical organization of collections. Official collections are returned first in the response. Supports filtering by archived status, user ownership, depth, and specific collection ID.
Input parameters
When true, returns only direct children; when false, returns the full tree with nested children
Filters the tree to show only the specified collection and its children
When true, excludes archived collections from the response
When true, excludes other users' personal collections from the response
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_DATABASEDEPRECATED: Use METABASE_LIST_DATABASES instead for a concise, LLM-friendly response. Retrieves all Database instances configured in Metabase with full detail including connection info.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_DATABASE_ID_AUTOCOMPLETE_SUGGESTIONSTool to retrieve autocomplete suggestions for table and field names in a database. Use when you need to find tables or columns that match a specific prefix for query building in the SQL editor.
Input parameters
Database ID to get autocomplete suggestions for. This is the unique identifier of the database in Metabase.
Non-blank string prefix to match against table and field names. The autocomplete will return suggestions that start with this prefix.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_DATABASE_ID_METADATATool to retrieve complete metadata for a specific database including all tables and fields. Use when you need detailed information about database structure, table schemas, and field properties.
Input parameters
Database ID to retrieve metadata from. This is the unique identifier for the database in Metabase.
Include hidden tables and fields in the response. By default, only non-hidden tables and fields are returned. Set to true to include hidden entities.
Only return tables for which the current user has data model editing permissions. Requires Enterprise Edition and advanced-permissions feature. If user has block permissions, only DB name, ID and tables will be returned with no additional metadata.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_DATABASE_VIRTUAL_DB_DATASETSTool to retrieve all datasets from a Metabase virtual database. Use when you need to list available dataset collections for a virtual database (commonly the Saved Questions virtual database with ID -1337).
Input parameters
The virtual database identifier. Use -1337 for the Saved Questions virtual database, which allows treating saved questions as data sources.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_EE_AUDIT_APP_USER_AUDIT_INFOTool to get audit info for the current authenticated user. Returns audit collection info if the user has permissions to access the audit collection, otherwise returns empty map. Requires enterprise audit-app feature.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_EE_BILLINGTool to retrieve the billing API version information for the Metabase Enterprise Edition instance. Use when you need to check the billing API version.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_EE_DEPENDENCIES_GRAPH_DEPENDENTSTool to get dependents of a resource in Metabase's dependency graph. Use when you need to find which resources depend on a specific resource (e.g., which dashboards use a particular card). This is an Enterprise Edition feature that helps track dependencies between different Metabase objects.
Input parameters
ID of the resource, must be an integer greater than zero
Type of the resource to query dependencies for
Type of dependents to retrieve. Filters the results to only include dependents of this specific type.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_EE_EMBEDDING_HUB_CHECKLISTTool to retrieve the embedding hub checklist status for Metabase Enterprise Edition. Use when you need to check the progress of embedding setup steps.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_EE_REMOTE_SYNC_CURRENT_TASKTool to retrieve the current remote sync task status in Metabase. Use when you need to check if a remote sync operation is currently running. Returns HTTP 204 when no task is active, or task details when a sync is in progress.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_EE_STALE_IDTool to retrieve stale data information by ID from Metabase Enterprise Edition. Use when you need to fetch details about stale resources.
Input parameters
The ID of the stale resource to retrieve
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_EE_UPLOAD_MANAGEMENT_TABLESTool to retrieve all uploaded tables in Metabase Enterprise Edition. Use when you need to list all tables that were created from CSV or file uploads.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_FIELD_ID_RELATEDTool to retrieve related entities for a Metabase field. Use when you need to get the parent table, related segments, metrics, and other fields from the same table for a specific field ID.
Input parameters
The ID of the field to get related entities for
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_FIELD_ID_SEARCH_SEARCH_IDTool to search for field values in Metabase that start with a given string. Use when you need autocomplete or type-ahead functionality for field values. Returns paired values from both the primary field and search field where the search field value starts with the provided string.
Input parameters
The field ID to search within. This is the primary field identifier in Metabase.
Optional maximum number of results to return. If not specified, the API will use its default limit. Must be a positive integer greater than zero if provided.
Non-blank string to search for. The API will return values that start with this string. Used for autocomplete or type-ahead search functionality.
The search field ID. This is the field whose values will be matched and returned in the search results.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_FIELD_ID_VALUESTool to retrieve distinct values for a Metabase field. Use when you need to get all distinct values of a field that has has_field_values set to 'list', including any human-readable remapped values. Returns empty response for Saved Questions virtual database fields.
Input parameters
The field ID to retrieve values for. This should be a valid field ID from the Metabase database.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_GLOSSARYTool to retrieve all glossary items from Metabase. Use when you need to list all glossary terms and their definitions available in the Metabase instance.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_LOGIN_HISTORY_CURRENTTool to retrieve login history for the currently authenticated user. Use when you need to audit or review login activity.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_MODEL_INDEXTool to retrieve indexed field values for a specific Metabase model. Use when you need to get searchable text values that have been indexed for a model. Metabase indexes text/string fields from models to make them searchable.
Input parameters
The ID of the model to retrieve index values for. Value must be an integer greater than zero.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_MODEL_INDEX_IDTool to retrieve details of a specific model index by its ID. Use when you need to get information about model indexing status, schedule, or configuration.
Input parameters
The ID of the ModelIndex record to retrieve. Must be an integer greater than zero.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_NATIVE_QUERY_SNIPPETTool to retrieve all native query snippets available in the Metabase instance. Native query snippets are reusable SQL fragments that can be included in native queries. Returns an array of snippet objects with their content and metadata.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_NATIVE_QUERY_SNIPPET_IDTool to retrieve a specific native query snippet by its ID. Use when you need to get details about a saved SQL snippet including its content, metadata, and template tags.
Input parameters
The ID of the native query snippet to retrieve. Must be a valid integer identifier for an existing snippet.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_NOTIFICATIONTool to retrieve notifications from Metabase with optional filtering. Use when you need to list notifications by creator, card, recipient, or include inactive ones. Returns an array of notification objects with their payloads, handlers, and creator information.
Input parameters
Return all notifications for a card. Filters notifications associated with the specified card/question ID.
Filter by notification's creator id. Only returns notifications created by the specified user.
Return all notifications that the user is the recipient. Filters by the recipient user ID.
Set to true to includes inactive notifications. By default, only active notifications are returned.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_PUBLIC_CARD_UUIDTool to fetch a publicly-accessible card by its public UUID and return card information including query definition, visualization settings, and parameters. Use when you need to retrieve card details that have been shared publicly. Does not require authentication when accessing via public UUID.
Input parameters
The public UUID of the card. This is a unique identifier that allows access to the card without authentication when public sharing is enabled.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_PUBLIC_OEMBEDTool to get oEmbed metadata for public Metabase resources. Use when you need to generate embeddable content for public dashboards or questions following the oEmbed protocol.
Input parameters
A non-blank string URL to a public Metabase resource (e.g., dashboard or question). The URL must point to a publicly accessible Metabase item.
Output format, must be 'json' if provided. Defaults to JSON if not specified.
Maximum width for embedded content in pixels. The oEmbed provider will respect this constraint when generating embed code.
Maximum height for embedded content in pixels. The oEmbed provider will respect this constraint when generating embed code.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_PUBLIC_PIVOT_CARD_UUID_QUERYTool to fetch a publicly-accessible pivot card and return query results including data rows, column metadata, and query status. Use when you need to retrieve pivot table data for cards that have been shared publicly via a public UUID. Does not require authentication when accessing via public UUID.
Input parameters
The public UUID of the pivot card to query. This is a unique identifier that allows access to the card without authentication.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_PULSETool to retrieve all pulses (scheduled reports/subscriptions) in Metabase. Use when you need to get a list of configured pulses with their settings and delivery channels.
Input parameters
If true, returns archived pulses. If false or omitted, returns non-archived pulses. Must be a valid boolean.
Filter pulses by dashboard ID. Returns only pulses associated with the specified dashboard.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_PULSE_FORM_INPUTTool to retrieve configuration information for creating or updating Pulses (scheduled email reports). Returns available notification channels and user choices. Use when setting up or modifying pulse subscriptions.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_PULSE_IDTool to retrieve a specific pulse (subscription) by its ID. Use when you need to get detailed information about a pulse including its channels, cards, schedule, and recipients.
Input parameters
The ID of the pulse to retrieve
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_PULSE_PREVIEW_CARD_IDTool to retrieve the HTML preview of a Metabase card formatted for pulse emails. Use when you need to get the rendered HTML representation of a card for email delivery.
Input parameters
The ID of the card to preview in pulse email format
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_PULSE_PREVIEW_CARD_INFO_IDTool to retrieve preview information for a Metabase card formatted for pulse emails. Use when you need both the HTML rendering and metadata about a card for pulse delivery. Returns a JSON object with the card ID, type, and HTML content.
Input parameters
The ID of the card to get preview information for in pulse email format
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_REVISIONTool to retrieve a specific revision by ID and entity type. Use when you need to get details about a particular revision of a Metabase entity (card, dashboard, document, or segment).
Input parameters
The numeric ID of the entity to retrieve revisions for. Must be an integer greater than zero
The entity type of the revision. Must be one of: card, dashboard, document, segment
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_REVISION_ENTITY_IDTool to retrieve the revision history for a Metabase entity (dashboard, card, metric, or segment). Use when you need to see the complete change history, who made changes, and what was modified. Returns an array of revision objects ordered from most recent to oldest.
Input parameters
The numeric ID of the entity to get revision history for
The entity type to get revision history for. Valid values are: 'dashboard', 'card', 'metric', or 'segment'
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_SEARCHTool to search Cards, Dashboards, Collections, Tables, Databases, and Pulses for a substring. Use when you need to find Metabase objects by name or search across multiple object types.
Input parameters
Search query substring to search for within Cards, Dashboards, Collections, Tables, Databases, and Pulses. May be nil or a non-blank string.
Array of model types to search within. Valid values include: dashboard, metric, segment, card, collection, table, pulse, database. If omitted, searches all model types.
Filter by archived status. If true, returns archived items. If false, returns non-archived items. If omitted, behavior depends on Metabase version.
Filter to specific database ID. Limits search results for tables, cards, and models to the specified database. Must be an integer greater than zero.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_SEARCH_WEIGHTSTool to retrieve the current search weight configuration for the Metabase instance. Use when you need to understand how search results are ranked based on factors like recency, bookmarks, view count, and other scoring factors.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_SEGMENTTool to retrieve all segments from Metabase. Use when you need to list all available segments or filter definitions for tables.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_SESSION_PASSWORD_RESET_TOKEN_VALIDTool to validate a password reset token in Metabase. Use when you need to check if a password reset token is still valid and can be used to reset a user's password.
Input parameters
Password reset token to validate. This token is typically sent to users via email when they request a password reset.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_SESSION_PROPERTIESTool to retrieve all global session properties and their values that are public. Use when you need to access configuration settings visible to the current user.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_TABLE_CARD_ID_FKSTool to retrieve foreign key relationships for a card-based virtual table. Use when you need to get FK information for a saved question (card). Note that virtual tables typically return an empty array as they don't have traditional database foreign key relationships.
Input parameters
The card ID (saved question ID) for which to retrieve foreign key information. Must be a positive integer.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_TABLE_CARD_ID_QUERY_METADATATool to retrieve metadata for a virtual table created from a card (saved question). Use when you need comprehensive information about a card's virtual table including database details, fields with their types and properties, field foreign keys, segments, and metrics.
Input parameters
The card ID to retrieve query metadata for. This is the ID of the saved question/card that defines the virtual table.
By passing include_sensitive_fields=true, information about sensitive Fields will be returned. Use this when you need complete field metadata including sensitive fields.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_TIMELINETool to retrieve all timelines in Metabase. Use when you need to get a list of all timelines with their settings, events, and associated metadata.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_TIMELINE_COLLECTION_IDTool to retrieve timelines associated with a specific Metabase collection. Use when you need to get all timelines and their events for a collection. Returns an empty array if the collection has no timelines.
Input parameters
The ID of the collection to fetch timelines for. This is the unique identifier for the collection in Metabase.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_TIMELINE_COLLECTION_ROOTTool to retrieve all timelines associated with the root collection. Use when you need to get timelines where items have no collection_id. The root collection is a virtual collection for items without a specific collection assignment.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_TIMELINE_EVENT_IDTool to retrieve a timeline event by ID. Use when you need to fetch details about a specific timeline event including its name, description, timestamp, and metadata.
Input parameters
The ID of the timeline event to retrieve
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_TIMELINE_IDTool to fetch a timeline by its ID from Metabase. Use when you need to retrieve timeline details including optional events. Add include='events' to get unarchived events, and archived=true to return all events.
Input parameters
The ID of the timeline to fetch
Set to 'events' to include unarchived events on the timeline
Set to true to return all events (both archived and unarchived). Only applies when include='events'
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_USER_CURRENTTool to retrieve information about the currently authenticated user. Use when you need to get the current user's profile, permissions, and account details.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_USER_IDTool to retrieve a specific user by their ID. Use when you need to get detailed information about a user including their profile, permissions, and status.
Input parameters
The user ID to fetch. Must be a valid Metabase user identifier.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_USER_KEY_VALUE_NAMESPACE_NAMESPACETool to retrieve all user key-value pairs for a specified namespace. Use when you need to fetch user-specific settings or preferences stored within a namespace. Returns HTTP 204 (No Content) when the namespace exists but contains no data.
Input parameters
The namespace identifier for user key-value storage. Used to retrieve all key-value pairs within this namespace.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_USER_RECIPIENTSTool to retrieve users for recipient selection. Returns only active users with permissions-based filtering applied. Use when you need to get a list of users that can be selected as recipients for notifications, alerts, or subscriptions.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_API_UTIL_RANDOM_TOKENTool to generate a cryptographically secure random token for Metabase. Use when you need to generate a secure token for embedding-secret-key or other security purposes.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_AUTOMAGIC_DASHBOARDSTool to retrieve an automagic dashboard for a specified entity with its ID. Use when you need to get auto-generated analytics and visualizations for tables, databases, cards, segments, or adhoc queries.
Input parameters
Optional query parameter to control what is shown in the dashboard
The entity type for which to generate the automagic dashboard. Valid values: 'table', 'segment', 'adhoc', 'database', 'card'
The ID of the entity (numeric for most entities) or a valid query string for adhoc queries
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_AUTOMAGIC_DASHBOARDS_CELLTool to return an automagic dashboard analyzing a specific cell in an entity's data. Use when you need to generate automated insights and visualizations for a cell query within a table, database, or other Metabase entity. The cell-query must be a base64-encoded JSON object in MBQL format.
Input parameters
Optional display options parameter to control what information is shown in the dashboard
The entity type to analyze. Valid values: 'table', 'database', 'field', 'segment', 'question', 'adhoc'
Base64-encoded JSON query object in MBQL format defining the cell to analyze. The query should be base64-encoded and contain fields like 'database', 'query' with 'source-table' and 'aggregation'
The entity ID (numeric) or encoded query string identifying the entity to analyze
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_AUTOMAGIC_DASHBOARDS_COMPARETool to return an automagic comparison dashboard for entity with id compared with comparison-entity with comparison-entity-id-or-query. Use when you need to generate a visual comparison dashboard between two entities (tables, segments, or adhoc queries).
Input parameters
Entity type.
Comparison entity type.
The ID of the entity (e.g., table ID like '1') or a query string
The ID of the comparison entity (e.g., table ID like '3') or a query string
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_AUTOMAGIC_DASHBOARDS_RULETool to return an automagic dashboard for a specific entity using a dashboard template with rule prefix. Use when you need to generate an auto-generated analytical dashboard for a table, segment, or adhoc query with specific visualization patterns.
Input parameters
The entity type (e.g., 'table', 'segment', or 'adhoc'). Specifies what kind of data source to generate the dashboard from.
The rule prefix for the dashboard template. This determines which category of dashboard rules to use (e.g., 'GenericTable', 'GenericSegment').
The name of the dashboard template to use. This specifies which automagic dashboard layout to apply (e.g., 'Correlations', 'Overview', 'Drilldown').
The ID of the entity or a query string. For tables, this is typically a numeric ID; for adhoc queries, this can be a base64-encoded query.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_AUTOMAGIC_DASH_ENTITY_CELL_QUERY_RULETool to fetch an automagic dashboard analyzing a specific cell using a template rule. Use when you need to generate automated insights and visualizations for a cell query with a specific dashboard template (e.g., correlations analysis, overview). Returns a dashboard with cards analyzing the specified cell using the given template from the prefix directory.
Input parameters
Entity type for the automagic dashboard. Valid values: 'table', 'question', 'metric', 'field', 'database', 'segment', 'adhoc'. Specifies the type of Metabase entity to analyze
Template prefix/subdirectory name defining the dashboard template category. Common values include 'GenericTable', 'TransactionTable', 'UserTable', 'EventTable'. This corresponds to template directories in Metabase's automagic dashboard resources
Base64-encoded JSON query object defining the cell to analyze. Must be valid base64-encoded JSON containing query specifications like breakout fields. Example: 'eyJicmVha291dCI6W1siZmllbGQiLDEsbnVsbF1dfQ==' represents a breakout query
Dashboard template name from the prefix subdirectory. Common templates include 'Correlations', 'Overview', 'Details'. This corresponds to YAML template files defining the dashboard structure and visualizations
Entity ID or encoded query identifier. For standard entities (table, database, field, segment, question), provide their numeric ID (e.g., '1', '42'). For adhoc queries, provide the encoded query string
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_AUTOMAGIC_DASH_ENTITY_QUERY_METADATATool to retrieve all metadata for an automagic dashboard for the specified entity type and ID. Use when you need databases, tables, fields, segments, metrics, cards, dashboards, or snippets metadata. Returns comprehensive metadata used to build automagic dashboards that automatically analyze data patterns.
Input parameters
Entity type for automagic dashboard. Valid values: table, segment, adhoc, question, metric, field
Entity ID (numeric) or base64-encoded query definition
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_CARD_DASHBOARDSTool to get a list of dashboards that a specific card appears in. Use when you need to find which dashboards contain a particular card. Returns an array of dashboard objects with id and name for each dashboard.
Input parameters
The ID of the card to get dashboards for
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_CARD_QUERY_METADATATool to get comprehensive query metadata for a Metabase card (saved question). Use when you need detailed information about the database structure, tables, fields, segments, and metrics associated with a card. This endpoint consolidates metadata that would otherwise require multiple API calls to /api/field/:id, /api/database/:id, and /api/table/:id/query_metadata.
Input parameters
The ID of the card (saved question) to retrieve query metadata for. Use this to get comprehensive metadata about the card's database structure, tables, and fields.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_CARD_SERIESTool to fetch a list of cards compatible as series with a specified card. Only cards with display types 'bar', 'scalar', 'line', or 'area' are compatible with series functionality. Use when you need to find cards that can be combined into multi-series visualizations. Returns 400 error for incompatible card types like 'smartscalar'.
Input parameters
The ID of the card to fetch compatible series for
Search query to filter cards by name or other attributes
The ID of the last card from the previous page to fetch the next page. Used for pagination
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_COMPARE_AUTOMAGIC_DASHBOARDSTool to retrieve an automagic comparison dashboard comparing a cell in one entity with another entity. Use when you need to generate comparative analytics and visualizations between two tables, segments, or adhoc queries based on a specific cell query.
Input parameters
Entity type for the base dashboard - can be 'table', 'question', 'segment', or 'adhoc'
Query defining the cell - must be base64 encoded JSON. For example: eyJ0eXBlIjoiY2VsbCJ9
Comparison entity type - can be 'table', 'segment', or 'adhoc'
ID or query for the entity. Numeric ID for table/question/segment, or query string for adhoc
ID or query for the comparison entity. Numeric ID for table/segment, or query string for adhoc
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_DASHBOARD_BY_IDTool to retrieve a dashboard by its ID from Metabase. Use when you need to fetch dashboard details including name, description, cards, parameters, and metadata.
Input parameters
The dashboard ID to retrieve.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_DASHBOARD_PARAMS_SEARCHTool to fetch possible values of a dashboard parameter that contain the search query. Use when you need to search or filter parameter values for a specific dashboard parameter. The parameter must be linked to a text field (not DateTime or other non-text types).
Input parameters
Dashboard ID to search parameter values in.
Search query string to match parameter values. Returns values that contain this query string.
Parameter ID (e.g., '9d9cddd4') - must be linked to a text field. This is the unique identifier for the dashboard parameter.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_DASHBOARD_QUERY_METADATATool to get all of the required query metadata for the cards on a dashboard. Use when you need to understand what databases, tables, fields, snippets, and cards are used by a specific dashboard.
Input parameters
The ID of the dashboard to get query metadata for.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_DASHBOARD_RELATEDTool to retrieve related entities for a Metabase dashboard. Use when you need to find questions/cards that are related to a specific dashboard.
Input parameters
The dashboard ID to get related entities for. Must be a valid dashboard identifier.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_DATABASE_BY_IDTool to retrieve a single database by ID from Metabase. Use when you need to get detailed information about a specific database, optionally including its tables and fields.
Input parameters
The unique identifier of the database to retrieve
Optional parameter to include related data. Use 'tables' to include tables belonging to the database, or 'tables.fields' to include tables and their fields
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_DATABASE_CARD_AUTOCOMPLETE_SUGGESTIONSTool to return a list of Card autocomplete suggestions for a given query in a given Database. Use when the user needs to search for cards (questions or models) in a specific database, typically for autocomplete functionality.
Input parameters
Database ID for which to retrieve card autocomplete suggestions
Search query prefix to filter card suggestions. Returns cards matching this prefix. Must be a non-blank string.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_DATABASE_DATASETSTool to retrieve tables (models and metrics) from a virtual database schema in Metabase. Use when you need to discover available datasets in the Saved Questions virtual database. The virtual database ID -1337 represents the Saved Questions database where models and metrics are stored.
Input parameters
The virtual database ID. Use -1337 for the Saved Questions virtual database, which contains models and metrics created from saved questions.
The schema name within the virtual database. Common values include 'Examples' and 'Everything else'. This represents the collection or grouping of saved questions.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_DATABASE_FIELDSTool to retrieve all field metadata from a Metabase database. Use when you need to explore available fields across all tables in a database. Returns field names, types, display names, and table associations for building queries or understanding database structure.
Input parameters
The ID of the database to retrieve fields from
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_DATABASE_HEALTHCHECKTool to check if a Metabase database can currently connect. Use when you need to verify database connectivity status. Returns the connection health status for the specified database ID.
Input parameters
The database ID to check health for
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_DATABASE_SCHEMASTool to retrieve all schemas with tables for a specific database in Metabase. Use when you need to discover available database schemas. Returns only schemas that contain tables, excluding empty schemas.
Input parameters
The database identifier. This is the unique ID of the database in Metabase for which to retrieve schemas.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_DATABASE_SETTINGS_AVAILABLETool to get all database-local settings and their availability for a given database. Use when you need to check which settings are available or enabled for a specific database. Returns a map of setting names to their availability status (enabled/disabled).
Input parameters
The database ID to retrieve settings availability for
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_DATABASE_SYNCABLE_SCHEMASTool to retrieve all syncable schemas for a specific database in Metabase. Use when you need to discover schemas available for syncing or CSV uploads. Returns all schemas that can be synced, unlike the regular schemas endpoint which excludes empty schemas.
Input parameters
The database identifier. This is the unique ID of the database in Metabase for which to retrieve syncable schemas.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_FIELD_REMAPPINGTool to fetch remapped field values for a specific field in Metabase. Use when you need to retrieve human-readable display values that correspond to field values. Returns an array of value pairs where each pair contains the original field value and its remapped display text.
Input parameters
The field identifier. This is the unique ID of the field in Metabase.
Maximum number of results to return. Must be a valid integer greater than zero. If not specified, returns all matching results.
The value to search for in the remapped field. This is the value you want to find mappings for.
The field to fetch remapped values from. This is the ID of the field containing the human-readable display values.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_FIELD_SUMMARYTool to get summary statistics for a Metabase field by its ID. Use when you need count and distinct count information for a specific field. Returns count (total values) and distincts (distinct unique values) for the specified field.
Input parameters
The Field ID to get summary statistics for. This is the unique identifier of the field in Metabase.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_MOST_RECENTLY_VIEWED_DASHBOARDTool to retrieve the most recently viewed dashboard for the authenticated user. Use when you need to check what dashboard the user last accessed.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_PULSE_PREVIEW_DASHBOARDTool to retrieve an HTML preview rendering of a dashboard. Use when you need to get the HTML representation of a dashboard for rendering or pulse notifications.
Input parameters
The ID of the dashboard to preview
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_TABLE_BY_IDTool to retrieve basic table information by ID from Metabase. Use when you need table details including name, schema, entity type, and associated database information. For comprehensive table metadata with fields and query information, use the query_metadata endpoint instead.
Input parameters
The ID of the table to retrieve. This should be a valid table ID from the Metabase database.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_TABLE_DATATool to retrieve data from a specific table in Metabase. Use when you need to fetch the actual data rows and column metadata for a table. Returns table data including rows, column metadata, and optional statistics.
Input parameters
The ID of the table to retrieve data from
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_TABLE_FKSTool to get all foreign keys whose destination is a field that belongs to a specific table. Use when you need to retrieve foreign key relationships for a table.
Input parameters
The ID of the table to retrieve foreign keys for
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_TABLE_QUERY_METADATATool to get metadata about a Table useful for running queries. Returns DB, fields, field FKs, and field values. Deprecated: Use METABASE_GET_TABLE_SCHEMA instead — it provides a more concise, LLM-friendly output with FK resolution and supports lookup by table name.
Input parameters
The table ID to retrieve query metadata for. This is the unique identifier for the table in Metabase.
Include any hidden Fields in the response. Defaults to false if not specified.
Include any sensitive Fields in the response. Defaults to false if not specified.
When true, checks that the current user has write permissions for the table's data model. When false, checks that they have data access permissions. Defaults to false if not specified.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_TABLE_SCHEMAGets column names, types, and foreign key relationships for a Metabase table. Use this before writing queries to know exact column names and types. Accepts either a table_id directly, or database_id + table_name to look up the table. Discovery chain: METABASE_LIST_DATABASES → METABASE_LIST_TABLES → METABASE_GET_TABLE_SCHEMA → METABASE_POST_API_DATASET.
Input parameters
The Metabase table ID. Use METABASE_LIST_TABLES to find table IDs. Either table_id or (database_id + table_name) must be provided.
Table name to look up (requires database_id). Case-insensitive matching is used. Optionally prefix with schema: 'public.users' or just 'users'.
The database ID (required when using table_name instead of table_id). Use METABASE_LIST_DATABASES to find database IDs.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_GET_USER_KEY_VALUETool to retrieve a user-specific key-value pair from Metabase storage. Use when you need to fetch user preferences, settings, or stored values organized by namespace and key. Returns the stored value if it exists, or None for unset keys (HTTP 204 response).
Input parameters
The key within the namespace (e.g., 'download_format_preference', 'theme'). This is the specific setting or value identifier.
The namespace for the key-value pair (e.g., 'last_download_format', 'user_preferences'). Namespaces organize key-value pairs into logical groups.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_LIST_DATABASESLists all databases configured in Metabase with essential info: ID, name, and engine. Use this first to discover available database IDs before running queries or listing tables.
Input parameters
Whether to include the list of table names for each database. Set to true when you need to discover which tables exist. Adds one extra API call per database, so leave false if you only need database IDs and names.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_LIST_TABLESLists all tables in a Metabase database with their IDs, names, and schemas. Use this after METABASE_LIST_DATABASES to discover available tables before querying. For detailed column information, use METABASE_GET_TABLE_SCHEMA next.
Input parameters
The database ID to list tables from. Use METABASE_LIST_DATABASES first to discover available database IDs.
Filter tables to a specific schema (e.g., 'public', 'dbo'). If not provided, tables from all schemas are returned.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_METABASE_GET_API_DASH_ID_PARAMS_PARAM_KEY_REMAPPINGTool to get parameter remapping for a dashboard parameter value. Use when you need to retrieve remapped values or human-readable representations for a specific parameter value in a Metabase dashboard.
Input parameters
Dashboard ID. The unique identifier of the dashboard containing the parameter.
The value to get remapping for. This is the parameter value that needs to be remapped to human-readable labels or alternative representations.
Parameter ID/key from dashboard's parameters array. The unique identifier or key of the parameter within the dashboard.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_METABASE_GET_API_DASH_ID_PARAMS_PARAM_KEY_VALUESTool to fetch available values for a specific dashboard parameter. Use when you need to get the list of possible values that can be used to filter a dashboard parameter.
Input parameters
Dashboard ID to fetch parameter values from
Parameter key/ID from dashboard parameters. This is the unique identifier for a specific parameter on the dashboard
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_METABASE_POST_API_EE_METABOT_TOOLS_CREATE_DASH_SUBTool to create a dashboard subscription using Metabot tools. Use when you need to set up automated delivery of a dashboard to an email address on a scheduled basis.
Input parameters
Arguments containing dashboard_id, email, and schedule configuration
UUID for the conversation context. Must be a properly formatted UUID string.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_METABASE_POST_API_EE_METABOT_TOOLS_GET_DASH_DETAILSTool to retrieve dashboard details for a Metabase metabot conversation. Use when you need to get information about a specific dashboard including its name, description, type, and verification status within a conversation context.
Input parameters
Arguments object containing dashboard_id parameter
Optional profile identifier. Can be null.
UUID for the conversation context. Required to retrieve dashboard details associated with a conversation.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_METABASE_POST_API_EE_METABOT_TOOLS_GET_DOC_DETAILSTool to retrieve document details using Metabase metabot tools. Use when you need to fetch specific document information by document ID within a conversation context.
Input parameters
Arguments containing the document_id to retrieve
A valid UUID for the conversation. Used to track and associate the document request with a specific conversation session.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_ACTIVITY_RECENTSTool to record recent activity for a Metabase item. Use when tracking user interactions with cards, dashboards, tables, or other Metabase objects. This helps maintain the user's recent activity history for quick access to frequently used items.
Input parameters
The type of item being accessed. Must be one of: card, dataset, metric, dashboard, table, collection, or document.
The context of the activity. Currently only 'selection' is supported.
The ID of the item being accessed. Must be a positive integer greater than zero.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_CARDTool to create a new Metabase card (question or model). Use when you need to create a new query, report, or visualization in Metabase.
Input parameters
Name of the card
Display type for visualization (e.g., table, bar, line, pie, scalar, area)
Description of the card
ID of collection to place card in
Query definition in MBQL or native SQL format. Must include 'database' (integer ID), 'type' (string, e.g., 'query' or 'native'), and 'query' object (for MBQL queries with 'source-table' field) or 'native' object (for SQL queries with 'query' field)
Metadata about query results
Checksum of metadata
Position within collection
Settings for visualization display. Can be an empty object {}
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_CARD_CARD_ID_QUERYDEPRECATED: Use METABASE_METABASE_CREATE_CARD_QUERY1 instead. Tool to execute a query for a saved Metabase card/question and retrieve results. Use when you need to run a saved question and get the data rows, columns, and metadata. Optionally accepts parameters for filtering results using template tag variables.
Input parameters
The ID of the saved card/question to query
Optional array of parameter objects for filtering. Each parameter can specify type, value, and target for template tag variables.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_CARD_COLLECTIONSTool to bulk move multiple Metabase cards into a target collection or remove them from collections. Use when you need to organize multiple cards by moving them to a specific collection, or pass null as collection_id to remove cards from all collections.
Input parameters
Array of card IDs (integers greater than zero) to move to the specified collection
Target collection ID (integer greater than zero) to move cards into, or null to remove cards from all collections
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_CARD_ID_COPYTool to create a copy of an existing Metabase card (question) by its ID. Use when you need to duplicate a card with all its query, visualization, and configuration settings.
Input parameters
The ID of the card to copy
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_CARDS_DASHBOARDSTool to retrieve dashboard associations for given card IDs. Returns an array with card_id and associated dashboards for each card. Use when you need to find which dashboards contain specific cards.
Input parameters
List of card IDs to retrieve dashboard associations for. Each ID must be an integer greater than zero.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_CARDS_MOVETool to bulk move cards to a collection or remove them from collections. Use when you need to organize multiple cards by moving them to a specific collection or removing them from all collections.
Input parameters
List of card IDs to move. Each ID must be an integer greater than zero.
ID of the target collection to move cards into. Pass null to remove cards from any collections. Must be an integer greater than zero if provided.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_COLLECTIONTool to create a new Metabase collection for organizing content. Use when you need to create a collection with name and color. Collections are used to organize dashboards, questions, and models in Metabase.
Input parameters
Collection name (non-blank string)
Hex color code for the collection (must match pattern #\[0-9A-Fa-f\]{6})
Parent collection ID for nested collections (must be greater than 0)
Collection description (non-blank string if provided)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_DASHBOARDTool to create a new Metabase dashboard. Use when you need to create a new dashboard for organizing and displaying visualizations and reports.
Input parameters
Dashboard name. Must be a non-blank string.
Dashboard filter parameters. Array of parameter objects that define filters users can apply to the dashboard.
Dashboard description. Provides context about the dashboard's purpose and content.
ID of collection to place dashboard in. If not specified, dashboard is created in root collection.
Position within the collection. Determines the display order.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_DATASETTool to execute a query against a Metabase database and retrieve results. Use when you need to run native SQL or MBQL queries. Supports both raw SQL queries (type='native') and structured MBQL queries (type='query').
Input parameters
Query type: 'native' for raw SQL queries, 'query' for MBQL (Metabase Query Language) queries
MBQL (Metabase Query Language) query structure.
Native SQL query structure.
The database ID to execute the query against
Optional query parameters for parameterized queries
Query execution constraints.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_DATASET_NATIVETool to convert a Metabase query to native SQL format. Use when you need to get the formatted native SQL representation of a query.
Input parameters
Query type - must be set to 'native' for native SQL queries
Object containing the native SQL query string and template tags for parameters
Database ID - must be a positive integer representing the target database
Array of parameter values for the query. Use empty array \[\] for queries without parameters
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_DATASET_PARAMETER_REMAPPINGTool to remap dataset parameter values in Metabase. Use when you need to transform or map parameter values for dataset queries. Returns an array of remapped values based on the parameter configuration.
Input parameters
The value to remap. Can be string, number, boolean, or null
A parameter object with id and type keys specifying which parameter to remap
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_DATASET_PARAMETER_VALUESTool to fetch parameter values for dataset fields in Metabase. Use when you need to retrieve possible values for a parameter based on specific field IDs. Returns a list of value pairs and indicates if more values exist.
Input parameters
Array of field IDs to retrieve parameter values from. Must be non-empty array of positive integers
A parameter object with id and type keys specifying which parameter to fetch values for
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_DATASET_PIVOTTool to execute a pivot table query and retrieve results. Use when you need to run an MBQL query with aggregation and breakout fields to generate pivot table data.
Input parameters
Query type, typically 'query' for MBQL queries
Query object containing source-table, aggregation, and breakout fields for pivot table generation. Must include 'source-table' (table ID), 'aggregation' (list of aggregation functions like \[\['count'\]\]), and 'breakout' (list of fields to break out by).
Database ID to query against
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_DATASET_QUERY_METADATATool to retrieve query metadata for a dataset query including databases, tables, fields, and snippets. Use when you need metadata about what's available for constructing or analyzing a query.
Input parameters
The query type. Use 'query' for MBQL queries with source-table, or 'native' for raw SQL queries.
The query object containing the query specification. For MBQL queries, include 'source-table' (integer table ID). For native queries, include the SQL string in a 'native' field.
The database ID to query metadata from. This is the unique identifier for the database in Metabase.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_EE_DEPENDENCIES_CHECK_SNIPPETTool to check dependencies for a native query snippet in Metabase Enterprise Edition. Use when you need to verify which cards or transforms depend on a specific snippet before modifying or deleting it.
Input parameters
The snippet ID to check dependencies for. Must be an integer greater than zero.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_EE_METABOT_TOOLS_FILTER_RECORDSTool to filter records from a Metabase data source using metabot tools. Use when you need to apply filters to a table, query, or report to narrow down the data set. Returns an MBQL query object with the applied filters.
Input parameters
Arguments object containing the data_source and filters to apply
UUID for the metabot conversation context. Required to maintain conversation state.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_EE_METABOT_TOOLS_GENERATE_INSIGHTSTool to generate insights for a table using Metabot tools. Use when you need to automatically generate analytical insights or dashboard for a specific table.
Input parameters
Contains the 'for' property specifying what to generate insights for (e.g., table_id)
Valid UUID for the conversation context. Must be a properly formatted UUID string.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_EE_METABOT_TOOLS_GET_CURRENT_USERTool to retrieve information about the current authenticated user in a Metabase metabot conversation. Use when you need to get details about the user making queries within a conversation context.
Input parameters
Optional profile identifier for the user. Can be null or omitted.
UUID for the conversation context. Required to retrieve the current user information within a metabot conversation.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_EE_METABOT_TOOLS_GET_QUERY_DETAILSTool to get query details using Metabot tools API. Use when you need to retrieve detailed information about a query including its structure, ID, and result columns. Returns either structured output with query metadata or plain text output.
Input parameters
Query object containing database, type, and query details. Structure: {"database": <int>, "type": "query", "query": {"source-table": <int>}}
Optional profile ID for the query execution context
UUID of the conversation. Must be a valid UUID in format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_EE_METABOT_TOOLS_GET_SNIPPET_DETAILSTool to retrieve SQL snippet details via Metabase metabot tools. Use when you need to get the full details of a specific snippet including its ID, name, content, and description within a metabot conversation context.
Input parameters
Arguments object containing the snippet_id to retrieve
Optional profile identifier for the metabot conversation
A valid UUID string for the metabot conversation context. This is required to maintain conversation state.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_EE_METABOT_TOOLS_GET_SNIPPETSTool to retrieve SQL snippets for a Metabase metabot conversation. Use when you need to get available snippets that can be used in SQL queries within a conversation context.
Input parameters
UUID for the conversation context. Required to retrieve snippets associated with a conversation.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_EE_METABOT_TOOLS_GET_TABLE_DETAILSTool to retrieve comprehensive table details via Metabase metabot tools. Use when you need to get complete information about a specific table including its fields, metrics, and related tables within a metabot conversation context.
Input parameters
Arguments object containing table_id and optional parameters for customizing the response
Optional profile identifier for the metabot conversation context
A valid UUID string for the metabot conversation context. This is required to maintain conversation state and track the request.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_EE_METABOT_TOOLS_QUERY_DATASOURCETool to query a Metabase datasource using Metabot tools. Use when you need to execute queries against tables or models within a conversation context. Requires either a table_id or model_id in the arguments.
Input parameters
Query arguments containing datasource identifier (table_id or model_id) and optional query parameters (limit, fields, filters, etc.)
UUID identifying the conversation context. Required for tracking the metabot interaction
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_EE_METABOT_TOOLS_SEARCHTool to search Metabase entities using the metabot search API. Use when you need to search for tables, models, questions, dashboards, metrics, databases, or transforms within a metabot conversation context.
Input parameters
Integer controlling maximum number of results to return (default: 50)
Weight object for controlling search result scoring.
String for filtering by creation date in ISO 8601 format
Integer to scope search to specific database
Array filtering by entity type: table, model, question, dashboard, metric, database, or transform
Array of string-based search terms to match against entity names and descriptions
String for filtering by last edit date in ISO 8601 format
Valid UUID for the conversation. Required for all metabot search operations.
Array of string queries for semantic/natural language search
Boolean to include native SQL queries in search (default: false)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_EE_METABOT_TOOLS_SEARCH_V2Tool to search Metabase items using the Metabot search v2 endpoint. Use when you need to find dashboards, questions, tables, models, metrics, or other Metabase entities using keyword or semantic search. Supports filtering by entity type, database, and dates.
Input parameters
Maximum number of search results to return. Defaults to 50 if not specified
Optional weighting factors for different search criteria to customize result ranking
Filter results by creation date. Format depends on API requirements
Filter results to only include items from a specific database ID
Filter results to only include specific entity types. If not provided, all types are searched
Array of keyword search terms to find matching items by name or content. Use for traditional keyword-based search
Filter results by last edit date. Format depends on API requirements
UUID string identifying the conversation context for the search. Used to maintain search context across multiple queries
Array of semantic/natural language queries for AI-powered search. Use for more contextual searches
Whether to include native SQL queries in the search. Defaults to false
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_EE_REMOTE_SYNC_CURRENT_TASK_CANCELTool to cancel the current active Remote Sync task in Metabase Enterprise Edition. Use when you need to stop an ongoing remote sync operation. Returns 'No active task to cancel' when there is no active task running.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_EID_TRANSLATION_TRANSLATETool to translate Metabase entity IDs (21-character strings) to their numeric IDs. Use when you need to convert entity ID strings to numeric IDs for API operations.
Input parameters
Map of entity types to arrays of entity IDs. Entity IDs must be 21 characters long. Keys are entity types (card, dashboard, etc.) and values are arrays of entity ID strings.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_FIELD_ID_RESCAN_VALUESTool to manually trigger an update for the FieldValues for a specific field. Use when you need to refresh the cached values for a field that is eligible for FieldValues. Only works with fields that have has_field_values set to 'list'.
Input parameters
The ID of the field to rescan values for. Field must be eligible for FieldValues (typically fields with 'list' has_field_values setting).
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_GLOSSARYTool to create a new glossary entry in Metabase. Use when you need to add a new term and its definition to the glossary.
Input parameters
The glossary term name (must be a non-blank string)
The definition of the glossary term
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_MODEL_INDEXTool to create a new model index in Metabase. Use when you need to enable search functionality on a model by indexing specific fields.
Input parameters
Field reference array for the primary key field in format \["field", field_id, options\]. The third element can be null or a dict with options. Example: \["field", 9, null\]
ID of the model/card to create index for. Must be integer greater than zero.
Field reference array for the text field to index for search in format \["field", field_id, options\]. The third element can be null or a dict with options like source-field. Example: \["field", 48, {"source-field": 11}\]
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_NATIVE_QUERY_SNIPPETTool to create a new native query snippet in Metabase. Native query snippets are reusable SQL fragments that can be included in native queries. Use when you need to create a new SQL snippet for reuse across multiple queries.
Input parameters
The name of the snippet. Must be unique within the Metabase instance.
The SQL code/native query content of the snippet. This is the reusable SQL fragment that can be included in native queries.
Optional description of the snippet to explain its purpose and usage.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_NOTIFICATIONTool to create a new notification in Metabase. Use when you need to create notifications for cards or other resources.
Input parameters
Payload object containing notification details. For 'notification/card' type, this should include 'card_id' (integer) specifying which card the notification is for
Type of notification to create. Common values include 'notification/card' for card-based notifications
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_NOTIFICATION_SENDTool to trigger sending an unsaved notification in Metabase. Use when you need to send a one-time notification for a card with custom handlers and templates. Returns success status when notification is sent (HTTP 204).
Input parameters
Notification payload containing card_id, send_once, and send_condition settings
Array of handler configurations defining how and where to send the notification
Optional list of specific handler IDs to send to. If not provided, all handlers are used
Type of notification payload, typically 'notification/card' for card-based notifications
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_PRODUCT_FEEDBACKTool to submit product feedback to Metabase. Use when you need to send feedback about the product from various sources.
Input parameters
Source of the feedback - must be a non-blank string indicating where the feedback originated from (e.g., 'api-test', 'web-app', 'mobile-app')
Feedback comments - optional string field containing the actual feedback text or description
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_PULSETool to create a new pulse (scheduled report/subscription) in Metabase. Use when you need to set up automated delivery of card or dashboard results via email or Slack.
Input parameters
Name of the pulse. Must be a non-blank string
Array of card objects to include in the pulse. Cannot be empty - must contain at least one card
Array of channel configurations for pulse delivery. Cannot be empty - must contain at least one channel
ID of the user creating the pulse. Must be a valid user ID greater than zero
List of parameters for the pulse
ID of the dashboard if creating a dashboard-based pulse
ID of the collection to place the pulse in
Whether to skip sending the pulse if results are empty
Position within the collection
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_REVISION_REVERTTool to revert a Metabase entity (card, dashboard, document, or segment) to a previous revision. Use when you need to undo changes and restore an entity to an earlier state.
Input parameters
The ID of the entity to revert. Must be an integer greater than zero.
The type of entity to revert. Must be one of: 'card' (question), 'dashboard', 'document', or 'segment'.
The ID of the revision to revert to. Must be an integer greater than zero.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_SESSION_FORGOT_PASSWORDTool to send a password reset email when user has forgotten their password. Use when you need to initiate a password reset for a user. Returns 204 status code on success regardless of whether the email exists (security measure).
Input parameters
Valid email address for password reset. A reset email will be sent to this address if it exists in the system.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_SESSION_PASSWORD_CHECKTool to check if a password meets Metabase's configured password complexity rules. Use when you need to validate a password against current complexity requirements. The endpoint was previously at /api/util/password_check but was moved to /api/session/password-check.
Input parameters
The password to validate against current password complexity rules. The endpoint checks if the password meets the configured complexity requirements (weak/normal/strong) and is not in the common passwords list.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_SLACK_BUG_REPORTTool to submit a bug report to Slack via Metabase's bug reporting endpoint. Use when you need to send diagnostic information about a bug to the configured Slack channel. Requires Slack integration with 'metabase-bugs' channel to be properly configured.
Input parameters
Diagnostic information for the bug report including browser, version, and system details. This field is required.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_API_TIMELINETool to create a new timeline in Metabase. Use when you need to create a timeline for organizing events.
Input parameters
Icon for the timeline. Defaults to 'star' if not provided
The name of the timeline (required)
Whether this is the default timeline. Defaults to false if not provided
Whether the timeline is archived. Defaults to false if not provided
Optional description of the timeline
The ID of the collection to associate the timeline with. Use null for root collection. Defaults to null if not provided
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_POST_DASHBOARD_QUERYTool to execute a query for a specific card within a dashcard on a dashboard. Use when you need to retrieve query results for dashboard visualizations. Returns data rows, column metadata, and execution statistics.
Input parameters
The ID of the card (question) to execute the query for
Optional array of parameter values to apply to the query. Each parameter includes type, target, and value fields.
The ID of the dashcard (card instance on the dashboard)
The ID of the dashboard containing the card
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_PUT_API_ACTION_IDTool to update an existing Metabase action by its ID. Use when you need to modify the name, description, query, or settings of an action. Returns the updated action object with the new updated_at timestamp.
Input parameters
The ID of the action to update
The name of the action
Type of action, e.g., 'query', 'http', or 'implicit'
The ID of the model associated with this action
The ID of the database for this action
Description of the action
Query definition object with lib/type, database, and stages. Must include database ID and query stages with native SQL or MBQL query
Optional visualization settings like confirmMessage and submitButtonLabel
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_PUT_API_BOOKMARK_ORDERINGTool to update the order of bookmarks for the authenticated user. Use when you need to reorder bookmarked cards, dashboards, or collections.
Input parameters
Sequence of bookmark items defining the desired order. Each item specifies the type and ID of a bookmarked item. The order of items in this array determines their display order.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_PUT_API_CARD_IDTool to update a specific card (question) by its ID. Use when you need to modify card properties like name, description, visualization settings, or query definition.
Input parameters
The ID of the card to update
Non-blank string for the card name
Display type for the card (e.g., table, bar, line, pie, scalar, area)
Whether the card is archived
String description of the card
ID of the collection containing this card
The query definition for the card
Array of result column metadata maps
Map of embedding parameters
Whether embedding is enabled
Checksum for metadata validation
Position in collection, must be > 0
Map of visualization settings
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_PUT_API_COLLECTION_IDTool to update an existing Metabase collection by its ID. Use when you need to modify collection properties like name, description, color, archive status, or move it to a different parent. All parameters except id are optional - only include the fields you want to update.
Input parameters
The ID of the collection to update
The name of the collection (must be a non-blank string if provided)
Hex color code matching ^#\[0-9A-Fa-f\]{6}$ (may be nil). Example: #5C7CFA, #FF6B6B
Archive/unarchive the collection (may be nil)
Parent collection ID for moving collections (must be > 0 or nil)
The description of the collection (may be nil or a non-blank string)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_PUT_API_DASHBOARD_ID_CARDSTool to update dashboard cards and tabs. DEPRECATED: This endpoint is marked for removal in v48 - use PUT /api/dashboard/:id instead to update dashcards along with other dashboard data. Use when you need to update card positions, sizes, or tab ordering on a dashboard.
Input parameters
Dashboard ID to update
Array of dashboard card objects with properties: id, card_id, size_x, size_y, col, row, series, parameter_mappings. Update positions and sizes of cards on the dashboard.
Array for tab ordering. Specify the order of tabs in the dashboard.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_PUT_API_DATABASE_IDTool to update a database configuration in Metabase. Use when you need to modify database settings such as name, description, connection details, or sync preferences. Requires superuser permissions.
Input parameters
Database ID to update. This is the unique identifier for the database in Metabase.
Database name
Database engine type (e.g., h2, postgres, mysql, mongodb, sqlserver)
Database connection details object containing connection parameters. For H2: {db: 'file:/path/to/db;USER=user;PASSWORD=pass'}. For Postgres: {host: 'localhost', port: 5432, dbname: 'mydb', user: 'user', password: 'pass'}. Structure varies by engine type.
Cache time-to-live in seconds. Controls how long query results are cached.
Database description
Whether to perform full synchronization of database metadata
Whether to automatically run queries against this database
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_PUT_API_FIELD_IDTool to update a Metabase field by its ID. Use when you need to modify field metadata such as description, display_name, semantic_type, or visibility_type. Only fields included in the request will be updated; others remain unchanged.
Input parameters
The ID of the field to update
Field description text. Use this to document what the field represents and how it should be used.
The display name for the field. This is how the field will be shown to users in the Metabase UI.
Semantic type for the field. Common values include: type/Category, type/Latitude, type/Longitude, type/Email, type/URL, type/Number, type/Integer, type/FK (foreign key), type/PK (primary key).
Controls field visibility in the Metabase UI. Valid values: 'normal' (visible in all contexts), 'details-only' (only visible in detail views), 'hidden' (not visible but queryable), 'retired' (deprecated), 'sensitive' (contains sensitive data).
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_PUT_API_GLOSSARY_IDTool to update an existing glossary entry in Metabase by its ID. Use when you need to modify the term name or definition of an existing glossary entry.
Input parameters
The unique identifier of the glossary entry to update
The updated glossary term name (must be a non-blank string)
The updated definition of the glossary term
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_PUT_API_NATIVE_QUERY_SNIPPET_IDTool to update an existing native query snippet by its ID. Use when you need to modify the name, description, or SQL content of a saved snippet. At least one field (name, description, or content) should be provided to update.
Input parameters
The ID of the native query snippet to update. Must be a valid integer identifier for an existing snippet.
The updated name of the snippet. If not provided, the existing name will be retained.
The updated SQL content of the snippet. If not provided, the existing content will be retained.
The updated description of what the snippet does. If not provided, the existing description will be retained.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_PUT_API_PULSE_IDTool to update an existing pulse (scheduled report/subscription) by ID. Use when you need to modify pulse settings like name, cards, channels, or skip_if_empty behavior.
Input parameters
The ID of the pulse to update
Name of the pulse. Must be a non-blank string
Array of card objects to include in the pulse. Each card must have id, include_csv, and include_xls
Whether the pulse is archived
Array of channel configurations for pulse delivery. Each channel must specify channel_type, enabled, schedule_type, and recipients
ID of the collection to place the pulse in
Whether to skip sending the pulse if results are empty
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_PUT_API_SEARCH_WEIGHTSTool to update search weights configuration in Metabase. Use when you need to customize how search results are ranked by adjusting scorer weights. Returns the current search weights configuration after update.
Input parameters
Reciprocal rank fusion weight. Controls the ranking algorithm for combining multiple search results
User-owned items weight. Boosts items owned by the current user
Text match weight. Controls scoring for text-based search matches
Exact match weight. Controls scoring for exact query matches
Model type weight. Affects how models are ranked in search results
Pinned items weight. Affects how pinned items appear in search results
Prefix match weight. Controls scoring for prefix matches in search queries
Recency scoring weight. Boosts more recently created or updated items
Verified items weight. Boosts items that have been verified
Dashboard scoring weight. Affects how dashboards are ranked in search results
Bookmarked items weight. Affects ranking of items that users have bookmarked
View count weight. Boosts items with higher view counts
User-specific recency weight. Boosts items the user has recently viewed or interacted with
Official collection weight. Boosts items in official collections
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_PUT_API_TABLETool to update a Metabase table by its ID. Use when you need to modify table metadata such as display_name, description, visibility_type, caveats, or points_of_interest. Only fields included in the request will be updated; others remain unchanged.
Input parameters
The ID of the table to update. This is the unique identifier for the table in Metabase.
Caveats or warnings about the table data. Use this to highlight potential issues, limitations, or important considerations when using this table.
Description of the table. Use this to document what the table contains and how it should be used.
Custom display name for the table. This is how the table will be shown to users in the Metabase UI.
Visibility setting for the table. 'normal' shows the table everywhere, 'cruft' marks it as low-quality, 'hidden' hides it from most views, 'technical' marks it as a technical table.
Notable aspects or interesting features of the table. Use this to highlight useful columns, relationships, or insights.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_PUT_API_TABLE_ID_FIELDS_ORDERTool to update the display order of fields in a Metabase table. Use when you need to reorder how fields appear in a table's schema or query results.
Input parameters
The ID of the table whose field order is being updated. Must be a positive integer.
Array of field IDs (integers) representing the desired display order of fields. Each value must be a positive integer. Field IDs can be obtained from GET /api/table/{id}/query_metadata endpoint.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_PUT_API_TIMELINE_EVENT_IDTool to update an existing timeline event by its ID. Use when you need to modify the name, description, timestamp, or other properties of a timeline event. Returns the updated event object.
Input parameters
The ID of the timeline event to update
The icon to display for the event (e.g., 'star', 'bell', 'calendar')
The title/name of the event
The timezone for the event (e.g., 'UTC', 'America/New_York')
The date/time of the event in ISO 8601 format
Description text for the event
Whether the specific time matters or just the date
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_PUT_API_TIMELINE_IDTool to update an existing timeline by its ID. Use when you need to modify the name, description, icon, or other properties of a timeline. Returns the updated timeline object.
Input parameters
The ID of the timeline to update
Icon name for the timeline (e.g., 'star', 'bell')
The name of the timeline
Whether this is a default timeline
Whether the timeline is archived
Description of the timeline
ID of the collection this timeline belongs to
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_PUT_API_USER_IDTool to update an existing Metabase user by their ID. Use when you need to modify user information such as email, name, group memberships, or superuser status. All update fields are optional; only provided fields will be updated.
Input parameters
The user ID to update. Must be a valid Metabase user identifier.
Email address of the user. Must be a valid email address if provided.
Array of group IDs that the user should be a member of. Each ID must be greater than 0.
Last name of the user. Must be non-blank if provided.
First name of the user. Must be non-blank if provided.
Whether the user should have superuser/admin privileges.
Key-value pairs for additional login attributes. Values can be strings or numbers.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_UPDATE_DASHBOARDTool to update a Metabase dashboard by ID. Use when you need to modify dashboard properties like name, description, parameters, cards, or tabs. The request body accepts the same structure as the response from GET /api/dashboard/:id. When setting archived to true, the dashboard is moved to Trash; when false, you may provide a collection_id.
Input parameters
The ID of the dashboard to update
Dashboard name - must be non-blank string if provided. Use this to rename the dashboard
List of dashboard tabs. Include when updating tab configuration
Whether the dashboard is archived. Set to true to move dashboard to Trash collection, false to restore it
List of dashboard cards with their configurations. Include the complete array when updating card positions or properties
Array of parameter objects for the dashboard. Include this when updating dashboard filters
Dashboard description - may be empty or a string
Collection ID the dashboard belongs to. Use when moving dashboard to a different collection or when unarchiving
Whether embedding is enabled for the dashboard
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
METABASE_UPDATE_DASHBOARD_CARDSTool to bulk update dashboard cards and tabs. DEPRECATED - use PUT /api/dashboard/:id instead for new implementations. Use when you need to create, update, or delete multiple dashboard cards at once. Cards with negative IDs are created, existing IDs are updated, and omitted cards are deleted.
Input parameters
The ID of the dashboard to update cards for
Array of dashboard cards. Include all cards to keep (with updates), add new cards with negative IDs, and omit cards to delete them
Array of dashboard tabs in desired order. Only required if dashboard has tabs
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
No publicly available marketplace agent is found using this tool yet. There are 76 agents privately built on Nagent that already use Metabase.
Build on Nagent
Connect Metabase to any Nagent agent in minutes — no API key management, no boilerplate. Just configure and deploy.
The five questions agent builders ask before adopting a new integration.
Open the External Integrations panel inside Nagent (app.nagent.ai/externalIntegration), find Metabase, and click "Connect Now." You'll authenticate with an API key — Nagent handles credential storage and refresh automatically. Once connected, Metabase is available to any agent in your workspace.
No. Nagent provides no-code integration for every tool. Once Metabase is connected, you configure its 194 actions directly in the agent builder UI — no API calls, no boilerplate, no schema management.
Helix — Nagent's agentic agent builder — lets you drop Metabase steps into any workflow visually. Pick an action (e.g., one of those listed above), fill in the inputs (Helix knows the required vs. optional schema for each parameter), and connect it to upstream/downstream steps. Triggers run as the entry point of an agent, so when a Metabase event fires, the agent kicks off automatically.
Every Metabase action and trigger ships with a fully-typed schema — input parameters with name, type, required flag, and description, plus the output payload shape. The schemas are documented in the sections above. Helix uses these schemas to validate your configuration at build time and to type-check the data flowing between steps.
Yes. While Metabase ships with 194 pre-built business intelligence actions, you can layer custom logic around them inside Helix — pre/post-processing steps, conditional branches, retries, or stitching Metabase together with other connected tools. For deeper customization, talk to our team about Nagent's Agentic AI Lab — forward-deployed engineers who build Metabase-based workflows tailored to your business.