@envseal/mcp-server 0.1.1 → 0.1.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.
@@ -2,8 +2,8 @@
2
2
  * Argument handling for the `envseal-mcp` binary, kept out of bin.ts so it can
3
3
  * be tested without importing a module whose side effect is starting a server.
4
4
  */
5
- export declare const VERSION = "0.1.1";
6
- export declare const USAGE = "envseal-mcp 0.1.1\n\nServes the SEP/1 tools to an MCP host over stdio JSON-RPC.\n\nUsage: envseal-mcp [--project <dir>]\n\nOptions:\n --project <dir> Project root to broker secrets for. Default: search\n upward from the current directory for env.schema.jsonc,\n .git or package.json. If none is found, this server\n refuses to start rather than create .envseal/ in a\n directory that is not a project.\n --help, -h Show this help and exit.\n --version, -v Print the version and exit.\n\nTransport: stdio only. --http and --port were removed; they were parsed and\nthen ignored, and no HTTP or SSE transport was ever implemented. For an HTTP\nsurface use @envseal/http-server, which speaks REST + OpenAPI on loopback --\nthat is a different protocol, not MCP over HTTP.\n";
5
+ export declare const VERSION = "0.1.2";
6
+ export declare const USAGE = "envseal-mcp 0.1.2\n\nServes the SEP/1 tools to an MCP host over stdio JSON-RPC.\n\nUsage: envseal-mcp [--project <dir>]\n\nOptions:\n --project <dir> Project root to broker secrets for. Default: search\n upward from the current directory for env.schema.jsonc,\n .git or package.json. If none is found, this server\n refuses to start rather than create .envseal/ in a\n directory that is not a project.\n --help, -h Show this help and exit.\n --version, -v Print the version and exit.\n\nTransport: stdio only. --http and --port were removed; they were parsed and\nthen ignored, and no HTTP or SSE transport was ever implemented. For an HTTP\nsurface use @envseal/http-server, which speaks REST + OpenAPI on loopback --\nthat is a different protocol, not MCP over HTTP.\n";
7
7
  export type ParsedArgv = {
8
8
  kind: 'help';
9
9
  } | {
package/dist/cli-args.js CHANGED
@@ -5,7 +5,7 @@ import { findProjectRoot } from '@envseal/core';
5
5
  * Argument handling for the `envseal-mcp` binary, kept out of bin.ts so it can
6
6
  * be tested without importing a module whose side effect is starting a server.
7
7
  */
8
- export const VERSION = '0.1.1';
8
+ export const VERSION = '0.1.2';
9
9
  export const USAGE = `envseal-mcp ${VERSION}
10
10
 
11
11
  Serves the SEP/1 tools to an MCP host over stdio JSON-RPC.
@@ -11,7 +11,6 @@ export const description = 'Returns only redacted status: whether each key is pr
11
11
  export const inputSchema = INPUT_SCHEMAS.env_describe;
12
12
  export async function handler(args, broker) {
13
13
  try {
14
- const input = INPUT_SCHEMAS.env_describe.parse(args ?? {});
15
14
  const result = await broker.describe();
16
15
  return respond(result);
17
16
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@envseal/mcp-server",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "main": "./dist/index.js",
@@ -25,10 +25,10 @@
25
25
  "dependencies": {
26
26
  "@modelcontextprotocol/sdk": "^1.13.0",
27
27
  "zod": "^3.24.1",
28
- "@envseal/protocol": "0.1.1",
29
- "@envseal/core": "0.1.1",
30
- "@envseal/prompters": "0.1.1",
31
- "@envseal/registry": "0.1.1"
28
+ "@envseal/protocol": "0.1.2",
29
+ "@envseal/core": "0.1.2",
30
+ "@envseal/registry": "0.1.2",
31
+ "@envseal/prompters": "0.1.2"
32
32
  },
33
33
  "devDependencies": {
34
34
  "tsx": "^4.19.2",