delete-profile
Remove a specific configuration profile from the MCP Environment & Installation Manager. Allows forced deletion of active profiles using the profile ID for streamlined server management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
force | No | Force deletion even if active | |
profileId | Yes | Profile ID to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"force": {
"description": "Force deletion even if active",
"type": "boolean"
},
"profileId": {
"description": "Profile ID to delete",
"type": "string"
}
},
"required": [
"profileId"
],
"type": "object"
}