{
  "info": {
    "name": "Rocketadmin — mcp.ai",
    "description": "REST API for the Rocketadmin MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/rocketadmin",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "rocketadmin_check_api_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/api/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "api",
            "key"
          ]
        },
        "description": "Tool 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.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocketadmin_delete_table_row",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/table/row",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "table",
            "row"
          ]
        },
        "description": "Tool 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"tableName\": \"\",\n  \"connectionId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocketadmin_get_company_invite_verify",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/company/invite/verify",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "company",
            "invite",
            "verify"
          ]
        },
        "description": "Tool 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"verificationString\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocketadmin_get_connection_tables_v2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/connection/tables/v2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "connection",
            "tables",
            "v2"
          ]
        },
        "description": "Tool to retrieve all tables in a database connection organized with category information. Use when you need to discover available tables in a specific connection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"connectionId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocketadmin_get_connection_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/connection/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "connection",
            "token"
          ]
        },
        "description": "Tool to validate if connection agent token is valid. Use when you need to check if the current connection token is still authorized and active.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocketadmin_get_connections",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/connections",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "connections"
          ]
        },
        "description": "Tool to retrieve all database connections where the user has access. Use when you need to discover available connections in the user's workspace.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocketadmin_get_hello",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/hello",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "hello"
          ]
        },
        "description": "Tool to retrieve a hello greeting message from the Rocketadmin API. Use when testing API connectivity or getting a simple greeting response.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocketadmin_get_saas_users_email",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/saas/users/email",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "saas",
            "users",
            "email"
          ]
        },
        "description": "Tool to retrieve user information by email address. Use when you need to get details about a specific user by their email.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocketadmin_get_table_row",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/table/row",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "table",
            "row"
          ]
        },
        "description": "Tool 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"tableName\": \"\",\n  \"connectionId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocketadmin_get_table_structure",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/table/structure",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "table",
            "structure"
          ]
        },
        "description": "Tool 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 Rocke",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tableName\": \"\",\n  \"connectionId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocketadmin_get_user_email_verify",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/email/verify",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "email",
            "verify"
          ]
        },
        "description": "Tool 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"verificationString\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocketadmin_post_table_csv_export",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/table/csv/export",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "table",
            "csv",
            "export"
          ]
        },
        "description": "Tool 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, pagi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"email\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"dateTo\": \"\",\n  \"perPage\": 0,\n  \"dateFrom\": \"\",\n  \"tableName\": \"\",\n  \"connectionId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocketadmin_post_table_row",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/table/row",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "table",
            "row"
          ]
        },
        "description": "Tool 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"row_data\": {},\n  \"tableName\": \"\",\n  \"connectionId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocketadmin_post_table_rows_find",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/table/rows/find",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "table",
            "rows",
            "find"
          ]
        },
        "description": "Tool 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 adv",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"filters\": {},\n  \"perPage\": 0,\n  \"tableName\": \"\",\n  \"connectionId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocketadmin_put_table_row",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/put/table/row",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "put",
            "table",
            "row"
          ]
        },
        "description": "Tool 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"row_data\": {},\n  \"tableName\": \"\",\n  \"connectionId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocketadmin_put_table_rows_delete",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/put/table/rows/delete",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "put",
            "table",
            "rows",
            "delete"
          ]
        },
        "description": "Tool 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"rows\": \"\",\n  \"tableName\": \"\",\n  \"connectionId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rocketadmin_put_table_rows_update",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/put/table/rows/update",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "put",
            "table",
            "rows",
            "update"
          ]
        },
        "description": "Tool 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"newValues\": {},\n  \"tableName\": \"\",\n  \"primaryKeys\": \"\",\n  \"connectionId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}