envibe 0.2.4 → 0.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/index.js +12 -2
- package/dist/index.js +12 -2
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -22974,12 +22974,22 @@ async function ensureSetup() {
|
|
|
22974
22974
|
async function startMCPServer() {
|
|
22975
22975
|
const server = new Server({
|
|
22976
22976
|
name: "envibe",
|
|
22977
|
-
version: "0.2.
|
|
22977
|
+
version: "0.2.6"
|
|
22978
22978
|
}, {
|
|
22979
22979
|
capabilities: {
|
|
22980
22980
|
tools: {},
|
|
22981
22981
|
resources: {}
|
|
22982
|
-
}
|
|
22982
|
+
},
|
|
22983
|
+
instructions: `envibe provides secure access to environment variables with granular permissions.
|
|
22984
|
+
|
|
22985
|
+
Use these tools when working with .env files or environment configuration:
|
|
22986
|
+
- env_list: See all available variables and their access levels
|
|
22987
|
+
- env_get: Read a specific variable's value (respects access permissions)
|
|
22988
|
+
- env_set: Modify variables with 'full' access level
|
|
22989
|
+
- env_describe: Get metadata about a variable (format, required, etc.)
|
|
22990
|
+
- env_check_required: Find missing required variables
|
|
22991
|
+
|
|
22992
|
+
Access levels: full (read/write), read-only, placeholder (name only), hidden (blocked).`
|
|
22983
22993
|
});
|
|
22984
22994
|
server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
22985
22995
|
return {
|
package/dist/index.js
CHANGED
|
@@ -20483,12 +20483,22 @@ async function ensureSetup() {
|
|
|
20483
20483
|
async function startMCPServer() {
|
|
20484
20484
|
const server = new Server({
|
|
20485
20485
|
name: "envibe",
|
|
20486
|
-
version: "0.2.
|
|
20486
|
+
version: "0.2.6"
|
|
20487
20487
|
}, {
|
|
20488
20488
|
capabilities: {
|
|
20489
20489
|
tools: {},
|
|
20490
20490
|
resources: {}
|
|
20491
|
-
}
|
|
20491
|
+
},
|
|
20492
|
+
instructions: `envibe provides secure access to environment variables with granular permissions.
|
|
20493
|
+
|
|
20494
|
+
Use these tools when working with .env files or environment configuration:
|
|
20495
|
+
- env_list: See all available variables and their access levels
|
|
20496
|
+
- env_get: Read a specific variable's value (respects access permissions)
|
|
20497
|
+
- env_set: Modify variables with 'full' access level
|
|
20498
|
+
- env_describe: Get metadata about a variable (format, required, etc.)
|
|
20499
|
+
- env_check_required: Find missing required variables
|
|
20500
|
+
|
|
20501
|
+
Access levels: full (read/write), read-only, placeholder (name only), hidden (blocked).`
|
|
20492
20502
|
});
|
|
20493
20503
|
server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
20494
20504
|
return {
|