MCP Environment & Installation Manager

by devlimelabs

set-env-var

Configure environment variables within MCP server profiles by defining keys, values, and sensitivity settings to manage application configurations systematically.

Input Schema

NameRequiredDescriptionDefault
descriptionNoOptional description of the environment variable
keyYesEnvironment variable key
profileIdYesProfile ID to set environment variable in
sensitiveYesWhether the value is sensitive and should be encrypted
valueYesEnvironment 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" }
ID: kykgc78z0v