rename_app
Change the name of a Heroku application or resolve naming conflicts by providing the current app name and a unique new name. Validates availability and manages the renaming process.
Instructions
Rename an existing Heroku application. Use this tool when a user needs to: 1) Change an app's name, or 2) Resolve naming conflicts. Requires both current app name and desired new name. The tool validates name availability and handles the rename process.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| app | Yes | The current name of the Heroku app you want to rename. This must be an existing app that you have access to. | |
| newName | Yes | The new name you want to give to the app. Must be unique across all Heroku apps. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"app": {
"description": "The current name of the Heroku app you want to rename. This must be an existing app that you have access to.",
"type": "string"
},
"newName": {
"description": "The new name you want to give to the app. Must be unique across all Heroku apps.",
"type": "string"
}
},
"required": [
"app",
"newName"
],
"type": "object"
}