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.
Files changed (2) hide show
  1. package/dist/index.js +5 -5
  2. 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 = `# aienv manifest - AI access control for environment variables
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 aienv - AI-safe view of environment variables",
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: aienv export --for-ai",
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: "aienv",
21242
- version: "0.1.0"
21241
+ name: "envibe",
21242
+ version: "0.2.2"
21243
21243
  }, {
21244
21244
  capabilities: {
21245
21245
  tools: {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "envibe-mcp",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "MCP server for envibe - the missing permission layer between AI agents and your .env",
5
5
  "type": "module",
6
6
  "bin": {