envibe-mcp 0.2.5 → 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/index.js +12 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -21239,12 +21239,22 @@ async function ensureSetup() {
|
|
|
21239
21239
|
async function startMCPServer() {
|
|
21240
21240
|
const server = new Server({
|
|
21241
21241
|
name: "envibe",
|
|
21242
|
-
version: "0.2.
|
|
21242
|
+
version: "0.2.6"
|
|
21243
21243
|
}, {
|
|
21244
21244
|
capabilities: {
|
|
21245
21245
|
tools: {},
|
|
21246
21246
|
resources: {}
|
|
21247
|
-
}
|
|
21247
|
+
},
|
|
21248
|
+
instructions: `envibe provides secure access to environment variables with granular permissions.
|
|
21249
|
+
|
|
21250
|
+
Use these tools when working with .env files or environment configuration:
|
|
21251
|
+
- env_list: See all available variables and their access levels
|
|
21252
|
+
- env_get: Read a specific variable's value (respects access permissions)
|
|
21253
|
+
- env_set: Modify variables with 'full' access level
|
|
21254
|
+
- env_describe: Get metadata about a variable (format, required, etc.)
|
|
21255
|
+
- env_check_required: Find missing required variables
|
|
21256
|
+
|
|
21257
|
+
Access levels: full (read/write), read-only, placeholder (name only), hidden (blocked).`
|
|
21248
21258
|
});
|
|
21249
21259
|
server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
21250
21260
|
return {
|