@cjsqbn/resume-screening-mcp 0.1.0 → 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.
- package/index.js +2 -0
- package/package.json +5 -3
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,9 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cjsqbn/resume-screening-mcp",
|
|
3
|
-
"version": "0.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
|
-
"bin":
|
|
6
|
+
"bin": {
|
|
7
|
+
"resume-screening-mcp": "./index.js"
|
|
8
|
+
},
|
|
7
9
|
"files": [
|
|
8
10
|
"index.js",
|
|
9
11
|
"README.md",
|
|
@@ -22,4 +24,4 @@
|
|
|
22
24
|
"access": "public"
|
|
23
25
|
},
|
|
24
26
|
"license": "MIT"
|
|
25
|
-
}
|
|
27
|
+
}
|