@recruiter-tools/mcp 1.0.0 → 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.
- package/bin/recruiter-mcp.js +7 -0
- package/dist/index.js +0 -2
- package/package.json +4 -4
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { createRequire } from 'node:module';
|
|
3
|
+
import { fileURLToPath } from 'node:url';
|
|
4
|
+
import { dirname, join } from 'node:path';
|
|
5
|
+
|
|
6
|
+
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
7
|
+
await import(join(__dirname, '../dist/index.js'));
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@recruiter-tools/mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "MCP server connecting AI assistants (Claude Code, Codex, Cursor…) to recruiter-assistant.com recruiting tools",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"recruiter-mcp": "
|
|
7
|
+
"recruiter-mcp": "bin/recruiter-mcp.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
10
|
"dev": "node --experimental-strip-types src/index.ts",
|
|
11
|
-
"build": "tsc
|
|
12
|
-
"postbuild": "node -e \"const fs=require('fs');const f='dist/index.js';fs.writeFileSync(f,'#!/usr/bin/env node\\n'+fs.readFileSync(f,'utf8'));fs.chmodSync(f,0o755)\"",
|
|
11
|
+
"build": "tsc",
|
|
13
12
|
"prepublishOnly": "npm run build"
|
|
14
13
|
},
|
|
15
14
|
"files": [
|
|
15
|
+
"bin",
|
|
16
16
|
"dist",
|
|
17
17
|
"services.json"
|
|
18
18
|
],
|