create-profile
Generate and configure environment profiles in the MCP Environment & Installation Manager, enabling efficient management of server settings and local package installations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Description of the profile | |
name | Yes | Name of the profile |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"description": "Description of the profile",
"type": "string"
},
"name": {
"description": "Name of the profile",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}