envibe-mcp 0.2.1 → 0.2.2
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 +5 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -20566,7 +20566,7 @@ function serializeManifest(manifest) {
|
|
|
20566
20566
|
version: manifest.version,
|
|
20567
20567
|
variables: manifest.variables
|
|
20568
20568
|
});
|
|
20569
|
-
const header = `#
|
|
20569
|
+
const header = `# envibe manifest - AI access control for environment variables
|
|
20570
20570
|
# Access levels:
|
|
20571
20571
|
# full - AI can see and modify the value
|
|
20572
20572
|
# read-only - AI can see but not modify
|
|
@@ -20881,9 +20881,9 @@ function filterForAI(env, manifest) {
|
|
|
20881
20881
|
}
|
|
20882
20882
|
function generateAIEnvContent(variables) {
|
|
20883
20883
|
const lines = [
|
|
20884
|
-
"# Generated by
|
|
20884
|
+
"# Generated by envibe - AI-safe view of environment variables",
|
|
20885
20885
|
"# See .env.manifest.yaml for access rules",
|
|
20886
|
-
"# DO NOT EDIT - regenerate with:
|
|
20886
|
+
"# DO NOT EDIT - regenerate with: envibe generate",
|
|
20887
20887
|
""
|
|
20888
20888
|
];
|
|
20889
20889
|
for (const variable of variables) {
|
|
@@ -21238,8 +21238,8 @@ async function ensureSetup() {
|
|
|
21238
21238
|
}
|
|
21239
21239
|
async function startMCPServer() {
|
|
21240
21240
|
const server = new Server({
|
|
21241
|
-
name: "
|
|
21242
|
-
version: "0.
|
|
21241
|
+
name: "envibe",
|
|
21242
|
+
version: "0.2.2"
|
|
21243
21243
|
}, {
|
|
21244
21244
|
capabilities: {
|
|
21245
21245
|
tools: {},
|