devbcn-mcp-server 0.0.0-202510271453 → 0.0.0-202510290534

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/bun.lock CHANGED
@@ -4,13 +4,13 @@
4
4
  "": {
5
5
  "name": "devbcn-mcp-server",
6
6
  "dependencies": {
7
- "@modelcontextprotocol/sdk": "1.20.1",
7
+ "@modelcontextprotocol/sdk": "1.20.2",
8
8
  "express": "5.1.0",
9
9
  },
10
10
  },
11
11
  },
12
12
  "packages": {
13
- "@modelcontextprotocol/sdk": ["@modelcontextprotocol/sdk@1.20.1", "", { "dependencies": { "ajv": "^6.12.6", "content-type": "^1.0.5", "cors": "^2.8.5", "cross-spawn": "^7.0.5", "eventsource": "^3.0.2", "eventsource-parser": "^3.0.0", "express": "^5.0.1", "express-rate-limit": "^7.5.0", "pkce-challenge": "^5.0.0", "raw-body": "^3.0.0", "zod": "^3.23.8", "zod-to-json-schema": "^3.24.1" } }, "sha512-j/P+yuxXfgxb+mW7OEoRCM3G47zCTDqUPivJo/VzpjbG8I9csTXtOprCf5FfOfHK4whOJny0aHuBEON+kS7CCA=="],
13
+ "@modelcontextprotocol/sdk": ["@modelcontextprotocol/sdk@1.20.2", "", { "dependencies": { "ajv": "^6.12.6", "content-type": "^1.0.5", "cors": "^2.8.5", "cross-spawn": "^7.0.5", "eventsource": "^3.0.2", "eventsource-parser": "^3.0.0", "express": "^5.0.1", "express-rate-limit": "^7.5.0", "pkce-challenge": "^5.0.0", "raw-body": "^3.0.0", "zod": "^3.23.8", "zod-to-json-schema": "^3.24.1" } }, "sha512-6rqTdFt67AAAzln3NOKsXRmv5ZzPkgbfaebKBqUbts7vK1GZudqnrun5a8d3M/h955cam9RHZ6Jb4Y1XhnmFPg=="],
14
14
 
15
15
  "accepts": ["accepts@2.0.0", "", { "dependencies": { "mime-types": "^3.0.0", "negotiator": "^1.0.0" } }, "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng=="],
16
16
 
package/dist/index.js CHANGED
@@ -39465,14 +39465,16 @@ class McpServer {
39465
39465
  title: tool.title,
39466
39466
  description: tool.description,
39467
39467
  inputSchema: tool.inputSchema ? zodToJsonSchema(tool.inputSchema, {
39468
- strictUnions: true
39468
+ strictUnions: true,
39469
+ pipeStrategy: "input"
39469
39470
  }) : EMPTY_OBJECT_JSON_SCHEMA,
39470
39471
  annotations: tool.annotations,
39471
39472
  _meta: tool._meta
39472
39473
  };
39473
39474
  if (tool.outputSchema) {
39474
39475
  toolDefinition.outputSchema = zodToJsonSchema(tool.outputSchema, {
39475
- strictUnions: true
39476
+ strictUnions: true,
39477
+ pipeStrategy: "output"
39476
39478
  });
39477
39479
  }
39478
39480
  return toolDefinition;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devbcn-mcp-server",
3
- "version": "0.0.0-202510271453",
3
+ "version": "0.0.0-202510290534",
4
4
  "homepage": "https://github.com/marcnuri-demo/blog-tutorials",
5
5
  "licenese": "Apache-2.0",
6
6
  "main": "./dist/index.js",
@@ -14,7 +14,7 @@
14
14
  "watch": "bun run --watch src/index.js"
15
15
  },
16
16
  "dependencies": {
17
- "@modelcontextprotocol/sdk": "1.20.1",
17
+ "@modelcontextprotocol/sdk": "1.20.2",
18
18
  "express": "5.1.0"
19
19
  },
20
20
  "repository": {