taskr-mcp-client 1.0.1 → 1.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.
Files changed (2) hide show
  1. package/index.js +3 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -5,6 +5,9 @@
5
5
  * Bridges stdio-based MCP clients (like Claude Code) to HTTP-only JSON-RPC MCP servers
6
6
  */
7
7
 
8
+ // Disable TLS certificate validation to handle Windows certificate revocation check issues
9
+ process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
10
+
8
11
  const readline = require('readline');
9
12
  const https = require('https');
10
13
  const http = require('http');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taskr-mcp-client",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "stdio to HTTP bridge for Taskr MCP server - connects Claude Code to HTTP-only JSON-RPC MCP endpoints",
5
5
  "main": "index.js",
6
6
  "bin": {