set-env-var
Set environment variables in MCP servers by specifying profile ID, key, value, and sensitivity settings for secure and organized configuration management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Optional description of the environment variable | |
key | Yes | Environment variable key | |
profileId | Yes | Profile ID to set environment variable in | |
sensitive | Yes | Whether the value is sensitive and should be encrypted | |
value | Yes | Environment variable value |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"description": "Optional description of the environment variable",
"type": "string"
},
"key": {
"description": "Environment variable key",
"type": "string"
},
"profileId": {
"description": "Profile ID to set environment variable in",
"type": "string"
},
"sensitive": {
"description": "Whether the value is sensitive and should be encrypted",
"type": "boolean"
},
"value": {
"description": "Environment variable value",
"type": "string"
}
},
"required": [
"profileId",
"key",
"value",
"sensitive"
],
"type": "object"
}