-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "humanpages",
"version": "1.4.6",
"mcpName": "io.github.human-pages-ai/humanpages",
"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, streaming payments, and agent funding.",
"main": "dist/index.js",
"type": "module",
"bin": {
"humanpages": "./dist/index.js",
"humanpages-http": "./dist/http.js"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/tools.js",
"dist/tools.d.ts",
"dist/http.js",
"dist/http.d.ts",
"README.md"
],
"scripts": {
"dev": "tsx watch src/index.ts",
"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)\"",
"start": "node dist/index.js",
"start:http": "node dist/http.js",
"test": "vitest run",
"prepublishOnly": "npm run build",
"build:bundle": "cd bundle && npm install && cd .. && zip -r humans.mcpb bundle/*"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"ai-agent",
"agent-tools",
"humanpages",
"hiring",
"freelancer",
"human-in-the-loop",
"gig-economy",
"job-board",
"crypto-payments",
"usdc",
"x402",
"streaming-payments",
"superfluid",
"claude",
"anthropic"
],
"author": "Human Pages",
"license": "MIT",
"homepage": "https://humanpages.ai/dev",
"repository": {
"type": "git",
"url": "https://github.com/human-pages-ai/humanpages.git"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"dotenv": "^16.4.1",
"express": "^4.21.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.16",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^4.0.18"
}
}