@walkeros/mcp 4.0.1 → 4.0.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 CHANGED
@@ -960,7 +960,7 @@ async function feedbackHandlerBody(client, input) {
960
960
  const isAnonymous = explicitAnonymous ?? anonymous ?? true;
961
961
  await client.submitFeedback(text, {
962
962
  anonymous: isAnonymous,
963
- version: "4.0.1"
963
+ version: "4.0.2"
964
964
  });
965
965
  return mcpResult5({ ok: true });
966
966
  } catch (error) {
@@ -1741,7 +1741,7 @@ var NPM_SEARCH_URL = "https://registry.npmjs.org/-/v1/search";
1741
1741
  var JSDELIVR_BASE = "https://cdn.jsdelivr.net/npm";
1742
1742
  var WALKEROS_JSON_PATH = "dist/walkerOS.json";
1743
1743
  var CACHE_TTL = 5 * 60 * 1e3;
1744
- var CLIENT_HEADER = "walkeros-mcp/4.0.1";
1744
+ var CLIENT_HEADER = "walkeros-mcp/4.0.2";
1745
1745
  var cache;
1746
1746
  function normalizePlatform(platform) {
1747
1747
  if (platform == null) return [];
package/dist/stdio.js CHANGED
@@ -679,7 +679,7 @@ var NPM_SEARCH_URL = "https://registry.npmjs.org/-/v1/search";
679
679
  var JSDELIVR_BASE = "https://cdn.jsdelivr.net/npm";
680
680
  var WALKEROS_JSON_PATH = "dist/walkerOS.json";
681
681
  var CACHE_TTL = 5 * 60 * 1e3;
682
- var CLIENT_HEADER = "walkeros-mcp/4.0.1";
682
+ var CLIENT_HEADER = "walkeros-mcp/4.0.2";
683
683
  var cache;
684
684
  function normalizePlatform(platform) {
685
685
  if (platform == null) return [];
@@ -1121,7 +1121,7 @@ async function feedbackHandlerBody(client, input) {
1121
1121
  const isAnonymous = explicitAnonymous ?? anonymous ?? true;
1122
1122
  await client.submitFeedback(text, {
1123
1123
  anonymous: isAnonymous,
1124
- version: "4.0.1"
1124
+ version: "4.0.2"
1125
1125
  });
1126
1126
  return mcpResult8({ ok: true });
1127
1127
  } catch (error) {
@@ -2755,7 +2755,7 @@ var HttpToolClient = class {
2755
2755
  };
2756
2756
 
2757
2757
  // src/stdio.ts
2758
- setClientContext({ type: "mcp", version: "4.0.1" });
2758
+ setClientContext({ type: "mcp", version: "4.0.2" });
2759
2759
  process.on("uncaughtException", (err) => {
2760
2760
  const emitter = getMcpEmitterSingleton();
2761
2761
  if (emitter) {
@@ -2775,7 +2775,7 @@ process.on("unhandledRejection", (reason) => {
2775
2775
  async function main() {
2776
2776
  const server = createWalkerOSMcpServer({
2777
2777
  client: new HttpToolClient(),
2778
- version: "4.0.1"
2778
+ version: "4.0.2"
2779
2779
  });
2780
2780
  const transport = new StdioServerTransport();
2781
2781
  await server.connect(transport);
@@ -2785,7 +2785,7 @@ main().catch(async (error) => {
2785
2785
  try {
2786
2786
  const emitter = await createMcpEmitter({
2787
2787
  clientInfo: void 0,
2788
- packageVersion: "4.0.1"
2788
+ packageVersion: "4.0.2"
2789
2789
  });
2790
2790
  await emitter.emitError("startup");
2791
2791
  } catch {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@walkeros/mcp",
3
- "version": "4.0.1",
3
+ "version": "4.0.2",
4
4
  "description": "MCP server for walkerOS flow development - discover packages, scaffold configs, validate, bundle, simulate, and test event pipelines",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -35,15 +35,15 @@
35
35
  },
36
36
  "dependencies": {
37
37
  "@modelcontextprotocol/sdk": "^1.26.0",
38
- "@walkeros/cli": "4.0.1",
39
- "@walkeros/core": "4.0.1"
38
+ "@walkeros/cli": "4.0.2",
39
+ "@walkeros/core": "4.0.2"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "zod": "^4.0"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@types/node": "^20.0.0",
46
- "@walkeros/config": "4.0.1"
46
+ "@walkeros/config": "4.0.2"
47
47
  },
48
48
  "repository": {
49
49
  "url": "git+https://github.com/elbwalker/walkerOS.git",