get-env-var
Retrieve specific environment variables from MCP servers using profile IDs and variable keys for precise configuration management in the MCP Environment & Installation Manager.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | Environment variable key | |
profileId | Yes | Profile ID to get environment variable from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"key": {
"description": "Environment variable key",
"type": "string"
},
"profileId": {
"description": "Profile ID to get environment variable from",
"type": "string"
}
},
"required": [
"profileId",
"key"
],
"type": "object"
}