@walkeros/mcp 4.1.1 → 4.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.
- package/dist/index.js +2 -2
- package/dist/stdio.js +5 -5
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -991,7 +991,7 @@ async function feedbackHandlerBody(client, input) {
|
|
|
991
991
|
const isAnonymous = explicitAnonymous ?? anonymous ?? true;
|
|
992
992
|
await client.submitFeedback(text, {
|
|
993
993
|
anonymous: isAnonymous,
|
|
994
|
-
version: "4.1.
|
|
994
|
+
version: "4.1.2"
|
|
995
995
|
});
|
|
996
996
|
return mcpResult5({ ok: true });
|
|
997
997
|
} catch (error) {
|
|
@@ -1821,7 +1821,7 @@ var NPM_SEARCH_URL = "https://registry.npmjs.org/-/v1/search";
|
|
|
1821
1821
|
var JSDELIVR_BASE = "https://cdn.jsdelivr.net/npm";
|
|
1822
1822
|
var WALKEROS_JSON_PATH = "dist/walkerOS.json";
|
|
1823
1823
|
var CACHE_TTL = 5 * 60 * 1e3;
|
|
1824
|
-
var CLIENT_HEADER = "walkeros-mcp/4.1.
|
|
1824
|
+
var CLIENT_HEADER = "walkeros-mcp/4.1.2";
|
|
1825
1825
|
var cache;
|
|
1826
1826
|
function normalizePlatform(platform) {
|
|
1827
1827
|
if (platform == null) return [];
|
package/dist/stdio.js
CHANGED
|
@@ -728,7 +728,7 @@ var NPM_SEARCH_URL = "https://registry.npmjs.org/-/v1/search";
|
|
|
728
728
|
var JSDELIVR_BASE = "https://cdn.jsdelivr.net/npm";
|
|
729
729
|
var WALKEROS_JSON_PATH = "dist/walkerOS.json";
|
|
730
730
|
var CACHE_TTL = 5 * 60 * 1e3;
|
|
731
|
-
var CLIENT_HEADER = "walkeros-mcp/4.1.
|
|
731
|
+
var CLIENT_HEADER = "walkeros-mcp/4.1.2";
|
|
732
732
|
var cache;
|
|
733
733
|
function normalizePlatform(platform) {
|
|
734
734
|
if (platform == null) return [];
|
|
@@ -1170,7 +1170,7 @@ async function feedbackHandlerBody(client, input) {
|
|
|
1170
1170
|
const isAnonymous = explicitAnonymous ?? anonymous ?? true;
|
|
1171
1171
|
await client.submitFeedback(text, {
|
|
1172
1172
|
anonymous: isAnonymous,
|
|
1173
|
-
version: "4.1.
|
|
1173
|
+
version: "4.1.2"
|
|
1174
1174
|
});
|
|
1175
1175
|
return mcpResult8({ ok: true });
|
|
1176
1176
|
} catch (error) {
|
|
@@ -2844,7 +2844,7 @@ var HttpToolClient = class {
|
|
|
2844
2844
|
};
|
|
2845
2845
|
|
|
2846
2846
|
// src/stdio.ts
|
|
2847
|
-
setClientContext({ type: "mcp", version: "4.1.
|
|
2847
|
+
setClientContext({ type: "mcp", version: "4.1.2" });
|
|
2848
2848
|
process.on("uncaughtException", (err) => {
|
|
2849
2849
|
const emitter = getMcpEmitterSingleton();
|
|
2850
2850
|
if (emitter) {
|
|
@@ -2864,7 +2864,7 @@ process.on("unhandledRejection", (reason) => {
|
|
|
2864
2864
|
async function main() {
|
|
2865
2865
|
const server = createWalkerOSMcpServer({
|
|
2866
2866
|
client: new HttpToolClient(),
|
|
2867
|
-
version: "4.1.
|
|
2867
|
+
version: "4.1.2"
|
|
2868
2868
|
});
|
|
2869
2869
|
const transport = new StdioServerTransport();
|
|
2870
2870
|
await server.connect(transport);
|
|
@@ -2874,7 +2874,7 @@ main().catch(async (error) => {
|
|
|
2874
2874
|
try {
|
|
2875
2875
|
const emitter = await createMcpEmitter({
|
|
2876
2876
|
clientInfo: void 0,
|
|
2877
|
-
packageVersion: "4.1.
|
|
2877
|
+
packageVersion: "4.1.2"
|
|
2878
2878
|
});
|
|
2879
2879
|
await emitter.emitError("startup");
|
|
2880
2880
|
} catch {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@walkeros/mcp",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.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.1.
|
|
39
|
-
"@walkeros/core": "4.1.
|
|
38
|
+
"@walkeros/cli": "4.1.2",
|
|
39
|
+
"@walkeros/core": "4.1.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.1.
|
|
46
|
+
"@walkeros/config": "4.1.2"
|
|
47
47
|
},
|
|
48
48
|
"repository": {
|
|
49
49
|
"url": "git+https://github.com/elbwalker/walkerOS.git",
|