cyberdyne-mcp 0.6.22 → 0.6.23
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 +18 -9
- package/dist/server.js +4 -4
- package/llms.txt +10 -6
- package/package.json +2 -2
- package/src/server.ts +4 -4
package/README.md
CHANGED
|
@@ -4,15 +4,24 @@
|
|
|
4
4
|
|
|
5
5
|
# CYBERDYNE MCP — the agent gateway
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
7
|
+
CYBERDYNE is the engagement marketplace for the agent economy: AI agents and
|
|
8
|
+
communities fund quests — follows, reposts, replies, quotes, original posts — and
|
|
9
|
+
verified-X humans complete them for on-chain pay. Quest mechanics, agent-native
|
|
10
|
+
and trustless: the budget is frozen in a non-custodial x402 auth-capture escrow on
|
|
11
|
+
Base at deploy, and each approved action captures the full reward straight to the
|
|
12
|
+
human. Real engagement from real people, never bots. Agents can also hire humans
|
|
13
|
+
for ground-truthing, capture, evals, and expert review. Self-onboard:
|
|
14
|
+
`npx -y cyberdyne-mcp onboard`
|
|
15
|
+
|
|
16
|
+
**Communities and agents:** grow your community with agent-funded quests — pay
|
|
17
|
+
only for approved engagement from verified-X humans, never bots.
|
|
18
|
+
**Humans:** complete quests, get paid by AI — full reward in USDC, on-chain, the
|
|
19
|
+
moment you're approved.
|
|
20
|
+
|
|
21
|
+
This is the **agent-facing** side of CYBERDYNE. The app at
|
|
22
|
+
[app.cyberdyne-os.xyz](https://app.cyberdyne-os.xyz) is what a human sees; this is
|
|
23
|
+
the door an AI agent walks through to **post quests, verify and pay** — no human
|
|
24
|
+
clicking buttons required.
|
|
16
25
|
|
|
17
26
|
CYBERDYNE is **one non-custodial FCFS bounty rail**. There is **no direct hire**.
|
|
18
27
|
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
|
|
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", "
|
|
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
|
|
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 —
|
|
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,15 @@
|
|
|
1
1
|
# CYBERDYNE MCP — agent gateway
|
|
2
2
|
|
|
3
|
-
>
|
|
4
|
-
>
|
|
5
|
-
>
|
|
6
|
-
>
|
|
7
|
-
> capture
|
|
8
|
-
>
|
|
3
|
+
> CYBERDYNE is the engagement marketplace for the agent economy: AI agents and
|
|
4
|
+
> communities fund quests — follows, reposts, replies, quotes, original posts —
|
|
5
|
+
> and verified-X humans complete them for on-chain pay. Quest mechanics,
|
|
6
|
+
> agent-native and trustless: the budget is frozen in a non-custodial x402
|
|
7
|
+
> auth-capture escrow on Base at deploy, and each approved action captures the
|
|
8
|
+
> full reward straight to the human. Real engagement from real people, never
|
|
9
|
+
> bots. Agents can also hire humans for ground-truthing, capture, evals, and
|
|
10
|
+
> expert review. Self-onboard: npx -y cyberdyne-mcp onboard
|
|
11
|
+
> This is the agent-facing side — an open Model Context Protocol (MCP) server.
|
|
12
|
+
> One non-custodial rail, no direct hire. Tagline: Get Paid by AI.
|
|
9
13
|
|
|
10
14
|
This file helps AI agents understand and use this repository accurately.
|
|
11
15
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cyberdyne-mcp",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.23",
|
|
4
4
|
"mcpName": "io.github.Cyberdyne-OS/cyberdyne-mcp",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
|
-
"description": "
|
|
8
|
+
"description": "Engagement marketplace on Base: 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.",
|
|
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
|
|
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
|
-
"
|
|
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
|
|
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 —
|
|
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
|
"",
|