humanpages 1.2.2 → 1.2.4
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/LICENSE +21 -0
- package/README.md +40 -29
- package/dist/http.d.ts +1 -0
- package/dist/http.js +23 -0
- package/dist/index.js +5 -1899
- package/dist/tools.d.ts +2 -0
- package/dist/tools.js +2014 -0
- package/package.json +12 -4
package/package.json
CHANGED
|
@@ -1,22 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "humanpages",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.4",
|
|
4
4
|
"mcpName": "io.github.human-pages-ai/humanpages",
|
|
5
|
-
"description": "MCP
|
|
5
|
+
"description": "MCP server (+ OpenClaw SKILL.md) that gives AI agents access to real-world people who listed themselves to be hired by agents. 31 tools including search by skill/location/equipment, job offers, job board listings, in-job messaging, and streaming payments.",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"bin": {
|
|
9
|
-
"humanpages": "./dist/index.js"
|
|
9
|
+
"humanpages": "./dist/index.js",
|
|
10
|
+
"humanpages-http": "./dist/http.js"
|
|
10
11
|
},
|
|
11
12
|
"files": [
|
|
12
13
|
"dist/index.js",
|
|
13
14
|
"dist/index.d.ts",
|
|
15
|
+
"dist/tools.js",
|
|
16
|
+
"dist/tools.d.ts",
|
|
17
|
+
"dist/http.js",
|
|
18
|
+
"dist/http.d.ts",
|
|
14
19
|
"README.md"
|
|
15
20
|
],
|
|
16
21
|
"scripts": {
|
|
17
22
|
"dev": "tsx watch src/index.ts",
|
|
18
23
|
"build": "tsc && node -e \"const fs=require('fs');const f='dist/index.js';const c=fs.readFileSync(f,'utf8');fs.writeFileSync(f,'#!/usr/bin/env node\\n'+c)\"",
|
|
19
24
|
"start": "node dist/index.js",
|
|
25
|
+
"start:http": "node dist/http.js",
|
|
20
26
|
"test": "vitest run",
|
|
21
27
|
"prepublishOnly": "npm run build",
|
|
22
28
|
"build:bundle": "cd bundle && npm install && cd .. && zip -r humans.mcpb bundle/*"
|
|
@@ -53,9 +59,11 @@
|
|
|
53
59
|
},
|
|
54
60
|
"dependencies": {
|
|
55
61
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
56
|
-
"dotenv": "^16.4.1"
|
|
62
|
+
"dotenv": "^16.4.1",
|
|
63
|
+
"express": "^4.21.0"
|
|
57
64
|
},
|
|
58
65
|
"devDependencies": {
|
|
66
|
+
"@types/express": "^4.17.21",
|
|
59
67
|
"@types/node": "^20.11.16",
|
|
60
68
|
"tsx": "^4.7.0",
|
|
61
69
|
"typescript": "^5.3.3",
|