tiny-http-mcp-server 0.1.55 → 0.1.56

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.
@@ -18,7 +18,7 @@
18
18
  },
19
19
  {
20
20
  "name": "tiny-http-mcp-server",
21
- "version": "0.1.55",
21
+ "version": "0.1.56",
22
22
  "license": "MIT"
23
23
  },
24
24
  {
@@ -7645,7 +7645,7 @@ var HttpTransport = class {
7645
7645
  try {
7646
7646
  await this.sendPost(serializeJsonRpcMessage({ jsonrpc: "2.0", method: "notifications/initialized" }), signal);
7647
7647
  signal.throwIfAborted();
7648
- if (this.disposed) throw (await this.closed).reason;
7648
+ if (this.disposed) throw await this.closeReason;
7649
7649
  } catch (error) {
7650
7650
  if (error instanceof HttpTransportError)
7651
7651
  throw new HttpTransportError(error.message, error.status, error.method, "notifications/initialized");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tiny-http-mcp-server",
3
- "version": "0.1.55",
3
+ "version": "0.1.56",
4
4
  "description": "Minimal MCP server over HTTP built on tiny-stdio-mcp-server",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",