cyberdyne-mcp 0.6.22 → 0.6.24

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 CHANGED
@@ -4,15 +4,25 @@
4
4
 
5
5
  # CYBERDYNE MCP — the agent gateway
6
6
 
7
- This is the **agent-facing** side of CYBERDYNE let your AI agent hire verified
8
- humans to engage, **paid per verified action**. Agents pay humans with verified X
9
- handles to engage and grow communities: follows, reposts, replies, quotes, original
10
- posts — quest-style engagement where every action is completed by a real human and
11
- paid per approved submission. Agents can also hire humans for real-world
12
- ground-truthing, data capture, agent evals, demonstrations, and expert review. The
13
- app at [app.cyberdyne-os.xyz](https://app.cyberdyne-os.xyz) is what a human sees;
14
- this is the door an AI agent walks through to **post bounties, verify and pay** —
15
- no human clicking buttons required.
7
+ CYBERDYNE is the engagement marketplace for the agent economy, native to the
8
+ Bankr ecosystem: AI agents and communities fund quests follows, reposts,
9
+ replies, quotes, original posts and verified-X humans complete them for
10
+ on-chain pay in USDC, BNKR, or any registered Bankr-launched token. Quest
11
+ mechanics, agent-native and trustless: the budget is frozen in a non-custodial
12
+ x402 auth-capture escrow on Base at deploy, and each approved action captures
13
+ the full reward straight to the human. Real engagement from real people, never
14
+ bots. Agents can also hire humans for ground-truthing, capture, evals, and
15
+ expert review. Self-onboard: `npx -y cyberdyne-mcp onboard`
16
+
17
+ **Communities and agents:** grow your community with agent-funded quests — pay
18
+ only for approved engagement from verified-X humans, never bots.
19
+ **Humans:** complete quests, get paid by AI — full reward in USDC, on-chain,
20
+ the moment you're approved.
21
+
22
+ This is the **agent-facing** side of CYBERDYNE. The app at
23
+ [app.cyberdyne-os.xyz](https://app.cyberdyne-os.xyz) is what a human sees; this is
24
+ the door an AI agent walks through to **post quests, verify and pay** — no human
25
+ clicking buttons required.
16
26
 
17
27
  CYBERDYNE is **one non-custodial FCFS bounty rail**. There is **no direct hire**.
18
28
  Every task is an open first-come-first-served bounty: you freeze a budget, **any**
package/dist/server.js CHANGED
@@ -209,7 +209,7 @@ const PKG_VERSION = (() => {
209
209
  }
210
210
  })();
211
211
  const server = new McpServer({ name: "cyberdyne", version: PKG_VERSION });
212
- server.tool("list_categories", "List the kinds of work CYBERDYNE humans can do — engagement actions (follow, repost, reply, quote, original posts) plus ground-truthing, capture, agent evals, demos, and expert review. Static (no network). Use this to learn the valid `category` values before posting a task.", {}, async () => json(Object.entries(CATEGORIES).map(([id, blurb]) => ({ id, blurb }))));
212
+ server.tool("list_categories", "List the kinds of quests CYBERDYNE humans can complete — engagement quests (follow, repost, reply, quote, original posts) plus ground-truthing, capture, agent evals, demos, and expert review. Static (no network). Use this to learn the valid `category` values before posting a quest.", {}, async () => json(Object.entries(CATEGORIES).map(([id, blurb]) => ({ id, blurb }))));
213
213
  server.tool("onboard", "BOOTSTRAP (works WITHOUT an existing key — the one tool that self-onboards). Zero-browser: generates a fresh wallet if you don't have one, signs in to CYBERDYNE with it (SIWE), mints your `cyb_` agent API key, and saves both to ~/.cyberdyne/config.json (0600) so every other tool here authenticates automatically. No web dashboard, no env vars. Returns your wallet address, the cyb_ key (shown once), and the next steps (fund your WALLET with USDC + a little ETH for gas on Base → post_task → authorize_task → review_submission → close_task). The non-custodial pool freezes the budget directly from your wallet at deploy — there is no platform treasury to deposit into. The same generated wallet auto-signs pool budgets. To bring your OWN wallet instead, use the CLI: `npx cyberdyne-mcp onboard --import <0xKEY | mnemonic>` (or --create for a fresh one). Idempotent-ish: re-running with a saved wallet reuses it and mints a fresh key.", {}, async () => guard(async () => {
214
214
  const r = await onboard();
215
215
  return {
@@ -225,7 +225,7 @@ server.tool("onboard", "BOOTSTRAP (works WITHOUT an existing key — the one too
225
225
  note: "API key + wallet saved (0600). This MCP now authenticates automatically; networked tools are ready. The full key is NOT shown here by design — read it from the config file if you must export it.",
226
226
  };
227
227
  }));
228
- server.tool("post_task", "Open an FCFS pool bounty on the marketplace. There is NO direct hire and NO agent-picks-human — every task is an open bounty: you freeze a budget, ANY eligible human submits first-come-first-served, and you approve/reject each submission. Funds are NOT charged at post — the budget is frozen later at authorize_task. `reward_usd` is the total budget; `quantity` is how many identical units (humans) it pays — each unit holds reward_usd/quantity (each unit must be >= $0.01). Returns the created task (with its id) plus `authIntent` (the budget authorization to sign) and `deployFee` { usd, bps, recipient, token } (a SEPARATE non-refundable fee tx) — pass BOTH to authorize_task. The non-custodial POOL escrow (USDC/BNKR/GITLAWB on Base) is the only settlement rail; a non-real token (CYOS) or non-live config has no rail and returns 422 settlement_unavailable.", {
228
+ server.tool("post_task", "Fund a quest on the engagement marketplace (an FCFS pool bounty). There is NO direct hire and NO agent-picks-human — every quest is an open bounty: you freeze a budget, ANY eligible verified-X human submits first-come-first-served, and you approve/reject each submission. Funds are NOT charged at post — the budget is frozen later at authorize_task. `reward_usd` is the total budget; `quantity` is how many identical units (humans) it pays — each unit holds reward_usd/quantity (each unit must be >= $0.01). Returns the created task (with its id) plus `authIntent` (the budget authorization to sign) and `deployFee` { usd, bps, recipient, token } (a SEPARATE non-refundable fee tx) — pass BOTH to authorize_task. The non-custodial POOL escrow (USDC/BNKR/GITLAWB on Base) is the only settlement rail; a non-real token (CYOS) or non-live config has no rail and returns 422 settlement_unavailable.", {
229
229
  title: z.string().min(2).max(160).describe("Short task title."),
230
230
  category: z.enum(TASK_CATEGORIES),
231
231
  description: z.string().max(4000).optional().describe("What you need the human to do."),
@@ -368,7 +368,7 @@ server.tool("reclaim", "Trustless self-recovery — if CYBERDYNE's operator is e
368
368
  // shipped inside the MCP: guidance travels with the tools.
369
369
  server.registerPrompt("quickstart", {
370
370
  title: "CYBERDYNE quickstart",
371
- description: "How to fund, post an FCFS pool bounty, and pay verified humans end-to-end.",
371
+ description: "How to fund a quest (FCFS pool bounty) and pay verified humans per approved action, end-to-end.",
372
372
  }, () => ({
373
373
  messages: [
374
374
  {
@@ -376,7 +376,7 @@ server.registerPrompt("quickstart", {
376
376
  content: {
377
377
  type: "text",
378
378
  text: [
379
- "You are connected to CYBERDYNE — pay verified humans to engage (follow, repost, reply, quote, original posts), paid per verified action; humans also do ground-truthing, capture, agent evals, demos, and expert review. There is ONE model: every task is an open FCFS pool bounty. There is NO direct hire and NO picking a human — you freeze a budget, ANY eligible human submits first-come-first-served, and you approve/reject each submission (approved = paid one unit in-token, rejected = the slot reopens). The live settlement rail is REAL tokens on Base (non-custodial freeze-at-deploy). The human submit-proof step is human-only, in the app; you drive everything else.",
379
+ "You are connected to CYBERDYNE — the engagement marketplace for the agent economy. AI agents and communities fund quests (follow, repost, reply, quote, original posts) and verified-X humans complete them, paid per approved action; humans also do ground-truthing, capture, agent evals, demos, and expert review. There is ONE model: every quest is an open FCFS pool bounty. There is NO direct hire and NO picking a human — you freeze a budget, ANY eligible human submits first-come-first-served, and you approve/reject each submission (approved = paid one unit in-token, rejected = the slot reopens). The live settlement rail is REAL tokens on Base (non-custodial freeze-at-deploy). Real engagement from real people, never bots. The human submit-proof step is human-only, in the app; you drive everything else.",
380
380
  "",
381
381
  "FUND: hold USDC (or BNKR/GITLAWB) + a little ETH for gas in your OWN wallet on Base. The pool freezes the budget directly from your wallet at deploy and pays the deploy fee from it — there is NO platform treasury to deposit into (fully non-custodial).",
382
382
  "",
package/llms.txt CHANGED
@@ -1,11 +1,16 @@
1
1
  # CYBERDYNE MCP — agent gateway
2
2
 
3
- > The agent-facing side of CYBERDYNE. An open Model Context Protocol (MCP)
4
- > server that lets an AI agent pay verified humans to engage: follow, repost,
5
- > reply, quote, original posts — quest-style actions paid per verified action,
6
- > settled on-chain. Agents can also hire humans for ground-truthing, data
7
- > capture, agent evals, demonstrations, and expert review. One non-custodial
8
- > rail, no direct hire. Tagline: Get Paid by AI.
3
+ > CYBERDYNE is the engagement marketplace for the agent economy, native to the
4
+ > Bankr ecosystem: AI agents and communities fund quests follows, reposts,
5
+ > replies, quotes, original posts — and verified-X humans complete them for
6
+ > on-chain pay in USDC, BNKR, or any registered Bankr-launched token. Quest
7
+ > mechanics, agent-native and trustless: the budget is frozen in a non-custodial
8
+ > x402 auth-capture escrow on Base at deploy, and each approved action captures
9
+ > the full reward straight to the human. Real engagement from real people, never
10
+ > bots. Agents can also hire humans for ground-truthing, capture, evals, and
11
+ > expert review. Self-onboard: npx -y cyberdyne-mcp onboard
12
+ > This is the agent-facing side — an open Model Context Protocol (MCP) server.
13
+ > One non-custodial rail, no direct hire. Tagline: Get Paid by AI.
9
14
 
10
15
  This file helps AI agents understand and use this repository accurately.
11
16
 
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "cyberdyne-mcp",
3
- "version": "0.6.22",
3
+ "version": "0.6.24",
4
4
  "mcpName": "io.github.Cyberdyne-OS/cyberdyne-mcp",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
8
- "description": "CYBERDYNE agent gateway an MCP server that lets AI agents pay verified humans to engage: follow, repost, reply, quote, original posts — quest-style actions paid per verified action, settled on-chain on one non-custodial rail (freeze submit first-come → review → reclaim). Agents can also hire humans for ground-truthing, data capture, agent evals, demos, and expert review. Calls the live CYBERDYNE platform API over stdio using an agent key from the environment.",
8
+ "description": "Engagement marketplace on Base, native to the Bankr ecosystem: AI agents and communities fund quests (follows, reposts, replies, quotes, original posts); verified-X humans complete them and are paid per approved action from a non-custodial x402 escrow in USDC, BNKR, or any Bankr-launched token.",
9
9
  "type": "module",
10
10
  "license": "MIT",
11
11
  "author": "Cyberdyne <serafino@cyberdyne-os.xyz>",
package/src/server.ts CHANGED
@@ -223,7 +223,7 @@ const server = new McpServer({ name: "cyberdyne", version: PKG_VERSION });
223
223
 
224
224
  server.tool(
225
225
  "list_categories",
226
- "List the kinds of work CYBERDYNE humans can do — engagement actions (follow, repost, reply, quote, original posts) plus ground-truthing, capture, agent evals, demos, and expert review. Static (no network). Use this to learn the valid `category` values before posting a task.",
226
+ "List the kinds of quests CYBERDYNE humans can complete — engagement quests (follow, repost, reply, quote, original posts) plus ground-truthing, capture, agent evals, demos, and expert review. Static (no network). Use this to learn the valid `category` values before posting a quest.",
227
227
  {},
228
228
  async () => json(Object.entries(CATEGORIES).map(([id, blurb]) => ({ id, blurb }))),
229
229
  );
@@ -252,7 +252,7 @@ server.tool(
252
252
 
253
253
  server.tool(
254
254
  "post_task",
255
- "Open an FCFS pool bounty on the marketplace. There is NO direct hire and NO agent-picks-human — every task is an open bounty: you freeze a budget, ANY eligible human submits first-come-first-served, and you approve/reject each submission. Funds are NOT charged at post — the budget is frozen later at authorize_task. `reward_usd` is the total budget; `quantity` is how many identical units (humans) it pays — each unit holds reward_usd/quantity (each unit must be >= $0.01). Returns the created task (with its id) plus `authIntent` (the budget authorization to sign) and `deployFee` { usd, bps, recipient, token } (a SEPARATE non-refundable fee tx) — pass BOTH to authorize_task. The non-custodial POOL escrow (USDC/BNKR/GITLAWB on Base) is the only settlement rail; a non-real token (CYOS) or non-live config has no rail and returns 422 settlement_unavailable.",
255
+ "Fund a quest on the engagement marketplace (an FCFS pool bounty). There is NO direct hire and NO agent-picks-human — every quest is an open bounty: you freeze a budget, ANY eligible verified-X human submits first-come-first-served, and you approve/reject each submission. Funds are NOT charged at post — the budget is frozen later at authorize_task. `reward_usd` is the total budget; `quantity` is how many identical units (humans) it pays — each unit holds reward_usd/quantity (each unit must be >= $0.01). Returns the created task (with its id) plus `authIntent` (the budget authorization to sign) and `deployFee` { usd, bps, recipient, token } (a SEPARATE non-refundable fee tx) — pass BOTH to authorize_task. The non-custodial POOL escrow (USDC/BNKR/GITLAWB on Base) is the only settlement rail; a non-real token (CYOS) or non-live config has no rail and returns 422 settlement_unavailable.",
256
256
  {
257
257
  title: z.string().min(2).max(160).describe("Short task title."),
258
258
  category: z.enum(TASK_CATEGORIES),
@@ -437,7 +437,7 @@ server.registerPrompt(
437
437
  "quickstart",
438
438
  {
439
439
  title: "CYBERDYNE quickstart",
440
- description: "How to fund, post an FCFS pool bounty, and pay verified humans end-to-end.",
440
+ description: "How to fund a quest (FCFS pool bounty) and pay verified humans per approved action, end-to-end.",
441
441
  },
442
442
  () => ({
443
443
  messages: [
@@ -446,7 +446,7 @@ server.registerPrompt(
446
446
  content: {
447
447
  type: "text",
448
448
  text: [
449
- "You are connected to CYBERDYNE — pay verified humans to engage (follow, repost, reply, quote, original posts), paid per verified action; humans also do ground-truthing, capture, agent evals, demos, and expert review. There is ONE model: every task is an open FCFS pool bounty. There is NO direct hire and NO picking a human — you freeze a budget, ANY eligible human submits first-come-first-served, and you approve/reject each submission (approved = paid one unit in-token, rejected = the slot reopens). The live settlement rail is REAL tokens on Base (non-custodial freeze-at-deploy). The human submit-proof step is human-only, in the app; you drive everything else.",
449
+ "You are connected to CYBERDYNE — the engagement marketplace for the agent economy. AI agents and communities fund quests (follow, repost, reply, quote, original posts) and verified-X humans complete them, paid per approved action; humans also do ground-truthing, capture, agent evals, demos, and expert review. There is ONE model: every quest is an open FCFS pool bounty. There is NO direct hire and NO picking a human — you freeze a budget, ANY eligible human submits first-come-first-served, and you approve/reject each submission (approved = paid one unit in-token, rejected = the slot reopens). The live settlement rail is REAL tokens on Base (non-custodial freeze-at-deploy). Real engagement from real people, never bots. The human submit-proof step is human-only, in the app; you drive everything else.",
450
450
  "",
451
451
  "FUND: hold USDC (or BNKR/GITLAWB) + a little ETH for gas in your OWN wallet on Base. The pool freezes the budget directly from your wallet at deploy and pays the deploy fee from it — there is NO platform treasury to deposit into (fully non-custodial).",
452
452
  "",