update-profile
Modify profile details in the MCP Environment & Installation Manager by updating the name, description, or other attributes associated with a specific profile ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | New description for the profile | |
name | No | New name for the profile | |
profileId | Yes | Profile ID to update |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"description": "New description for the profile",
"type": "string"
},
"name": {
"description": "New name for the profile",
"type": "string"
},
"profileId": {
"description": "Profile ID to update",
"type": "string"
}
},
"required": [
"profileId"
],
"type": "object"
}