Save months of work developing custom admin panels with our secure solution for your MySQL, PostgreSQL, MSSQL, Oracle DB or MongoDB project.
Save months of work developing custom admin panels with our secure solution for your MySQL, PostgreSQL, MSSQL, Oracle DB or MongoDB project. On Nagent, Rocketadmin is exposed as a fully-configurable developer tools integration that any agent can call — 17 actions, and API key authentication. No code is required to wire Rocketadmin into your workflow — connect it once via the External Integrations panel and reuse it across every agent you build.
Agent builders use Rocketadmin to automate the kinds of tasks developer tools 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 Rocketadmin 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 Rocketadmin, with input parameters and output schema. Drop these into any step of an agent built in Helix.
ROCKETADMIN_CHECK_API_KEYTool to validate whether an API key is legitimate and active. Use when you need to verify that the current API key is valid before performing other operations.
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
ROCKETADMIN_DELETE_TABLE_ROWTool to delete a single row from a database table by primary key. Use when you need to remove a specific row identified by its ID. This is an API+ feature.
Input parameters
The primary key value of the row to delete. Can be a string or integer depending on the table schema.
The name of the table from which the row will be deleted.
The unique identifier for the database connection where the deletion will occur.
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
ROCKETADMIN_GET_COMPANY_INVITE_VERIFYTool to check if a company invitation verification link is available and valid. Use when you need to verify a company invitation token before accepting the invitation.
Input parameters
A unique verification token string used to validate the company invitation link and check if it is still available and valid.
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
ROCKETADMIN_GET_CONNECTIONSTool to retrieve all database connections where the user has access. Use when you need to discover available connections in the user's workspace.
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
ROCKETADMIN_GET_CONNECTION_TABLES_V2Tool to retrieve all tables in a database connection organized with category information. Use when you need to discover available tables in a specific connection.
Input parameters
The unique identifier for the database connection to query tables 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
ROCKETADMIN_GET_CONNECTION_TOKENTool to validate if connection agent token is valid. Use when you need to check if the current connection token is still authorized and active.
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
ROCKETADMIN_GET_HELLOTool to retrieve a hello greeting message from the Rocketadmin API. Use when testing API connectivity or getting a simple greeting 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
ROCKETADMIN_GET_SAAS_USERS_EMAILTool to retrieve user information by email address. Use when you need to get details about a specific user by their email.
Input parameters
The email address of the user to retrieve information 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
ROCKETADMIN_GET_TABLE_ROWTool to retrieve a single row from a database table using its primary key. Use when you need to fetch specific row data by its ID from a RocketAdmin connection.
Input parameters
The primary key value of the row to retrieve. Can be a string or integer depending on the table schema.
The name of the database table to query.
The unique identifier for the database connection.
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
ROCKETADMIN_GET_TABLE_STRUCTURETool to retrieve the structural information of a database table including columns, data types, constraints, and relationships. Use when you need to understand the schema of a specific table in a RocketAdmin connection.
Input parameters
The name of the database table to retrieve structure for.
The unique identifier for the database connection.
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
ROCKETADMIN_GET_USER_EMAIL_VERIFYTool to verify a user's email address using a verification token. Use when you need to confirm a user's email address after registration or email change.
Input parameters
A unique verification token string used to authenticate and validate the user's email address during the verification process.
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
ROCKETADMIN_POST_TABLE_CSV_EXPORTTool to export table data as a CSV file from RocketAdmin. Use when you need to download table data in CSV format. This is an API+ feature that exports the specified table with optional filtering, pagination, and sorting.
Input parameters
Page number for pagination, must be >=1.
Filter by user email address.
Maximum records to return. Default is 500 if pagination is not used. Must be >=1.
Sorting parameter (e.g., 'ASC' for ascending, 'DESC' for descending).
End date for date range filtering (ISO8601 format).
Number of records per page, must be >=1.
Start date for date range filtering (ISO8601 format).
Specifies which table to export.
The unique identifier for the database connection.
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
ROCKETADMIN_POST_TABLE_ROWTool to add a new row to a database table in RocketAdmin. Use when you need to insert data into a specific table. This is an API+ feature that creates a new row with the provided field values.
Input parameters
The row data to insert. Keys should match table column names and values should match expected data types. The structure depends on the target table schema.
The name of the database table where the row should be inserted.
The unique identifier for the database connection where the row will be added.
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
ROCKETADMIN_POST_TABLE_ROWS_FINDTool to retrieve all rows from a database table with filter parameters in the request body. Use when you need to fetch rows with complex filtering conditions. This is an API+ feature that supports advanced filtering with operators like equals, greater than, less than, like, in, etc.
Input parameters
Pagination page number for retrieving specific page of results.
Filter parameters to apply to the table rows query. Structure: {column_name: {operator: value}}. Operators include 'eq' (equals), 'ne' (not equals), 'gt' (greater than), 'gte' (greater than or equal), 'lt' (less than), 'lte' (less than or equal), 'like' (pattern matching), 'in' (in list), 'notin' (not in list), 'isnull' (is null), 'isnotnull' (is not null).
Number of results per page for pagination.
The name of the database table to query rows from.
The unique identifier for the database connection.
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
ROCKETADMIN_PUT_TABLE_ROWTool to update a row in a database table by its primary key. Use when you need to modify existing row data in a RocketAdmin connection. This is an API+ feature.
Input parameters
The primary key value of the row to update. Can be a string or integer depending on the table schema.
The row data to update. Keys should match table column names and values should match expected data types. Only include fields that need to be updated.
The name of the database table containing the row to update.
The unique identifier for the database connection where the row will be updated.
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
ROCKETADMIN_PUT_TABLE_ROWS_DELETETool to delete multiple rows from a table by primary key. Use when you need to batch delete rows identified by their primary keys. This is an API+ feature.
Input parameters
Array of objects containing the primary key field(s) and their values for rows to be deleted. Each object must include the primary key field name(s) that identify the row.
The name of the table from which rows will be deleted.
The unique identifier for the database connection where the deletion will occur.
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
ROCKETADMIN_PUT_TABLE_ROWS_UPDATETool to update multiple rows in a table by primary key. Use when you need to batch update rows identified by their primary keys with the same new values. This is an API+ feature.
Input parameters
Object containing the field names and new values to be set for all identified rows. Keys should match table column names.
The name of the table where rows will be updated.
Array of objects containing the primary key field(s) and their values for rows to be updated. Each object must include the primary key field name(s) that identify the row.
The unique identifier for the database connection where the update will occur.
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 91 agents privately built on Nagent that already use Rocketadmin.
Build on Nagent
Connect Rocketadmin 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 Rocketadmin, and click "Connect Now." You'll authenticate with an API key — Nagent handles credential storage and refresh automatically. Once connected, Rocketadmin is available to any agent in your workspace.
No. Nagent provides no-code integration for every tool. Once Rocketadmin is connected, you configure its 17 actions directly in the agent builder UI — no API calls, no boilerplate, no schema management.
Helix — Nagent's agentic agent builder — lets you drop Rocketadmin 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 Rocketadmin event fires, the agent kicks off automatically.
Every Rocketadmin 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 Rocketadmin ships with 17 pre-built developer tools actions, you can layer custom logic around them inside Helix — pre/post-processing steps, conditional branches, retries, or stitching Rocketadmin together with other connected tools. For deeper customization, talk to our team about Nagent's Agentic AI Lab — forward-deployed engineers who build Rocketadmin-based workflows tailored to your business.