@wrongstack/mcp 0.319.0 → 0.319.1

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 +1 -5
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -3040,11 +3040,7 @@ async function persist(configPath, full, servers) {
3040
3040
  full.mcpServers = servers;
3041
3041
  await writeConfig(configPath, full);
3042
3042
  }
3043
- var UNSAFE_SERVER_NAMES = /* @__PURE__ */ new Set([
3044
- "__proto__",
3045
- "constructor",
3046
- "prototype"
3047
- ]);
3043
+ var UNSAFE_SERVER_NAMES = /* @__PURE__ */ new Set(["__proto__", "constructor", "prototype"]);
3048
3044
  function unsafeServerNameResult(name) {
3049
3045
  if (!UNSAFE_SERVER_NAMES.has(name)) return void 0;
3050
3046
  return { ok: false, message: `Invalid server name "${name}"` };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wrongstack/mcp",
3
- "version": "0.319.0",
3
+ "version": "0.319.1",
4
4
  "license": "MIT",
5
5
  "description": "WrongStack Model Context Protocol client and registry: stdio, SSE, and streamable HTTP transports.",
6
6
  "repository": {
@@ -26,7 +26,7 @@
26
26
  "!dist/**/*.map"
27
27
  ],
28
28
  "dependencies": {
29
- "@wrongstack/core": "0.319.0"
29
+ "@wrongstack/core": "0.319.1"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/node": "^26.2.0",