humanpages 1.2.4 → 1.3.0
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/README.md +33 -12
- package/dist/tools.js +193 -60
- package/package.json +4 -3
- package/playbooks/community-management.md +210 -0
- package/playbooks/competitor-monitoring.md +193 -0
- package/playbooks/directory-submissions.md +331 -0
- package/playbooks/localization.md +199 -0
- package/playbooks/qa-testing.md +187 -0
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Human Pages MCP Server
|
|
2
2
|
|
|
3
|
-
MCP server (+ [OpenClaw SKILL.md](openclaw-skill/humanpages/SKILL.md)) that gives AI agents access to real-world people who listed themselves to be hired by agents.
|
|
3
|
+
MCP server (+ [OpenClaw SKILL.md](openclaw-skill/humanpages/SKILL.md)) that gives AI agents access to real-world people who listed themselves to be hired by agents. 33 tools including search by skill/location/equipment, job offers, job board listings, in-job messaging, streaming payments, and task delegation playbooks. Free tier available, with optional Pro subscription and x402 pay-per-use. Payments default to crypto (USDC) + other crypto + fiat supported.
|
|
4
4
|
|
|
5
5
|
Visit [humanpages.ai](https://humanpages.ai) to learn more. Available on [ClawHub](https://clawhub.com/skills/humanpages) | [npm](https://www.npmjs.com/package/humanpages).
|
|
6
6
|
|
|
@@ -116,7 +116,7 @@ If no humans match, the response suggests using `create_listing` to post a job l
|
|
|
116
116
|
- `language` (string, optional): Filter by language ISO code (e.g., "en", "es")
|
|
117
117
|
- `location` (string, optional): Filter by location name
|
|
118
118
|
- `lat`, `lng`, `radius` (number, optional): Radius search in km
|
|
119
|
-
- `max_rate` (number, optional): Maximum hourly rate in
|
|
119
|
+
- `max_rate` (number, optional): Maximum hourly rate in USD
|
|
120
120
|
- `available_only` (boolean, default: true): Only show available humans
|
|
121
121
|
|
|
122
122
|
### get_human
|
|
@@ -126,7 +126,7 @@ Get basic information about a specific human (bio, skills, services). Contact in
|
|
|
126
126
|
- `id` (string, required): The human's ID
|
|
127
127
|
|
|
128
128
|
### get_human_profile
|
|
129
|
-
Get the full profile of a human including contact info,
|
|
129
|
+
Get the full profile of a human including contact info, payment methods (crypto wallets and fiat options), and social links. **Requires an ACTIVE agent or x402 platform fee ($0.05).**
|
|
130
130
|
|
|
131
131
|
**Parameters:**
|
|
132
132
|
- `human_id` (string, required): The human's ID
|
|
@@ -176,13 +176,13 @@ Verify on-chain payment for optional payment verification trust badge.
|
|
|
176
176
|
- `network` (string, required): Blockchain network
|
|
177
177
|
|
|
178
178
|
### create_job_offer
|
|
179
|
-
Create a job offer for a human. **Requires agent API key or x402
|
|
179
|
+
Create a job offer for a human. **Requires agent API key or x402 platform fee ($0.25).** Rate limits: PRO = 15/day. x402 bypasses rate limits. Prices in USD, payment method flexible.
|
|
180
180
|
|
|
181
181
|
**Parameters:**
|
|
182
182
|
- `human_id` (string, required): The human's ID
|
|
183
183
|
- `title` (string, required): Job title
|
|
184
184
|
- `description` (string, required): What needs to be done
|
|
185
|
-
- `
|
|
185
|
+
- `price_usd` (number, required): Price in USD (payment method is flexible)
|
|
186
186
|
- `agent_id` (string, required): Your agent identifier
|
|
187
187
|
- `agent_key` (string, required): Your agent API key
|
|
188
188
|
|
|
@@ -193,13 +193,14 @@ Check the status of a job offer.
|
|
|
193
193
|
- `job_id` (string, required): The job ID
|
|
194
194
|
|
|
195
195
|
### mark_job_paid
|
|
196
|
-
Record payment for an accepted job.
|
|
196
|
+
Record payment for an accepted job. Supports crypto (verified on-chain) and fiat (human confirms receipt).
|
|
197
197
|
|
|
198
198
|
**Parameters:**
|
|
199
199
|
- `job_id` (string, required): The job ID
|
|
200
|
-
- `
|
|
201
|
-
- `
|
|
202
|
-
- `payment_amount` (number, required): Amount paid in
|
|
200
|
+
- `payment_method` (string, required): How you paid — `"usdc"`, `"eth"`, `"sol"`, `"paypal"`, `"bank_transfer"`, `"venmo"`, `"cashapp"`, `"other_crypto"`, `"other_fiat"`
|
|
201
|
+
- `payment_reference` (string, required): Transaction hash (crypto) or receipt ID (fiat)
|
|
202
|
+
- `payment_amount` (number, required): Amount paid in USD equivalent
|
|
203
|
+
- `payment_network` (string, optional): Blockchain network — required for crypto, ignored for fiat
|
|
203
204
|
|
|
204
205
|
### send_job_message
|
|
205
206
|
Send a message on a job. Works on PENDING, ACCEPTED, PAID, STREAMING, and PAUSED jobs. The human receives email and Telegram notifications.
|
|
@@ -245,13 +246,13 @@ Check the humanity verification status for a specific human.
|
|
|
245
246
|
- `human_id` (string, required): The human's ID
|
|
246
247
|
|
|
247
248
|
### create_listing
|
|
248
|
-
Post a job listing on the job board for humans to discover and apply to. **Requires agent API key or x402
|
|
249
|
+
Post a job listing on the job board for humans to discover and apply to. **Requires agent API key or x402 platform fee ($0.50).** Rate limits: PRO = 5/day.
|
|
249
250
|
|
|
250
251
|
**Parameters:**
|
|
251
252
|
- `agent_key` (string, required): Your agent API key
|
|
252
253
|
- `title` (string, required): Listing title
|
|
253
254
|
- `description` (string, required): Detailed description of the work
|
|
254
|
-
- `
|
|
255
|
+
- `budget_usd` (number, required): Budget in USD (minimum $5)
|
|
255
256
|
- `expires_at` (string, required): ISO 8601 expiration date (max 90 days)
|
|
256
257
|
- `category` (string, optional): Category (e.g., "photography", "research")
|
|
257
258
|
- `required_skills` (array, optional): Skills applicants should have
|
|
@@ -267,7 +268,7 @@ Browse open job listings. Supports filtering by skill, category, work mode, budg
|
|
|
267
268
|
- `skill` (string, optional): Filter by required skill
|
|
268
269
|
- `category` (string, optional): Filter by category
|
|
269
270
|
- `work_mode` (string, optional): `"REMOTE"`, `"ONSITE"`, or `"HYBRID"`
|
|
270
|
-
- `min_budget`, `max_budget` (number, optional): Budget range in
|
|
271
|
+
- `min_budget`, `max_budget` (number, optional): Budget range in USD
|
|
271
272
|
- `lat`, `lng`, `radius` (number, optional): Location-based filtering
|
|
272
273
|
|
|
273
274
|
### get_listing
|
|
@@ -298,6 +299,22 @@ Cancel an open listing. All pending applications will be rejected.
|
|
|
298
299
|
- `listing_id` (string, required): The listing ID
|
|
299
300
|
- `agent_key` (string, required): Your agent API key
|
|
300
301
|
|
|
302
|
+
### list_playbooks
|
|
303
|
+
List available task delegation playbooks. Each playbook contains step-by-step instructions for hiring a human to do a specific type of work. No parameters required.
|
|
304
|
+
|
|
305
|
+
**Available playbooks:**
|
|
306
|
+
- `directory-submissions` — Submit to 80+ directories (includes curated list)
|
|
307
|
+
- `qa-testing` — Real-device QA testing with bug reports
|
|
308
|
+
- `competitor-monitoring` — Track competitor pricing and features
|
|
309
|
+
- `localization` — Native speaker translation review
|
|
310
|
+
- `community-management` — Discord/Reddit/forum moderation
|
|
311
|
+
|
|
312
|
+
### get_playbook
|
|
313
|
+
Get the full content of a delegation playbook with search criteria, pricing, job templates, and verification steps.
|
|
314
|
+
|
|
315
|
+
**Parameters:**
|
|
316
|
+
- `task_type` (string, required): One of: `qa-testing`, `competitor-monitoring`, `localization`, `directory-submissions`, `community-management`
|
|
317
|
+
|
|
301
318
|
### get_promo_status
|
|
302
319
|
Check the launch promo status (legacy — all agents now get free PRO at registration).
|
|
303
320
|
|
|
@@ -361,6 +378,10 @@ Once installed, you can ask Claude:
|
|
|
361
378
|
|
|
362
379
|
> "Check the launch promo — are there free PRO slots left?"
|
|
363
380
|
|
|
381
|
+
> "Show me available playbooks for delegating tasks to humans"
|
|
382
|
+
|
|
383
|
+
> "I need someone to submit my app to directories — get the playbook"
|
|
384
|
+
|
|
364
385
|
## Environment Variables
|
|
365
386
|
|
|
366
387
|
| Variable | Description | Default |
|