@cjsqbn/resume-screening-mcp 0.1.1 → 0.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.
Files changed (2) hide show
  1. package/index.js +2 -0
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -615,6 +615,7 @@ function callTool(name, args) {
615
615
  }
616
616
 
617
617
  let inputBuffer = Buffer.alloc(0);
618
+ const keepAlive = setInterval(() => {}, 1 << 30);
618
619
 
619
620
  process.stdin.on("data", (chunk) => {
620
621
  inputBuffer = Buffer.concat([inputBuffer, chunk]);
@@ -622,6 +623,7 @@ process.stdin.on("data", (chunk) => {
622
623
  });
623
624
 
624
625
  process.stdin.on("error", () => process.exit(1));
626
+ process.stdin.resume();
625
627
 
626
628
  function processMessages() {
627
629
  while (true) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cjsqbn/resume-screening-mcp",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "MCP service for resume screening, JD matching, trust checking, scoring and candidate ranking.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -24,4 +24,4 @@
24
24
  "access": "public"
25
25
  },
26
26
  "license": "MIT"
27
- }
27
+ }