export-env-vars
Export environment variables from a specified profile in dotenv, json, or shell format using the MCP Environment & Installation Manager. Simplify configuration management and integration workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | Yes | Export format (dotenv, json, or shell) | |
profileId | Yes | Profile ID to export environment variables from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"format": {
"description": "Export format (dotenv, json, or shell)",
"enum": [
"dotenv",
"json",
"shell"
],
"type": "string"
},
"profileId": {
"description": "Profile ID to export environment variables from",
"type": "string"
}
},
"required": [
"profileId",
"format"
],
"type": "object"
}