list-env-vars
Retrieve environment variables for a specific profile ID to manage configurations and automate installations in the MCP server environment.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
profileId | Yes | Profile ID to list environment variables from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"profileId": {
"description": "Profile ID to list environment variables from",
"type": "string"
}
},
"required": [
"profileId"
],
"type": "object"
}