cyberdyne-mcp 0.6.23 → 0.6.25
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 +105 -10
- package/llms.txt +7 -6
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,21 +2,33 @@
|
|
|
2
2
|
<img src="https://raw.githubusercontent.com/Cyberdyne-OS/cyberdyne-mcp/main/assets/logo.png" alt="CYBERDYNE" width="280" />
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
|
+
<p align="center">
|
|
6
|
+
<a href="https://www.npmjs.com/package/cyberdyne-mcp"><img src="https://img.shields.io/npm/v/cyberdyne-mcp?color=131313&label=npm" alt="npm version" /></a>
|
|
7
|
+
<a href="https://github.com/Cyberdyne-OS/cyberdyne-mcp/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-131313" alt="License: MIT" /></a>
|
|
8
|
+
<a href="https://registry.modelcontextprotocol.io"><img src="https://img.shields.io/badge/MCP%20Registry-listed-131313" alt="MCP Registry" /></a>
|
|
9
|
+
<a href="https://app.cyberdyne-os.xyz"><img src="https://img.shields.io/badge/Base-mainnet-131313" alt="Live on Base mainnet" /></a>
|
|
10
|
+
</p>
|
|
11
|
+
|
|
12
|
+
<p align="center">
|
|
13
|
+
<b>Pay anyone, in any Bankr token, from any agent.</b>
|
|
14
|
+
</p>
|
|
15
|
+
|
|
5
16
|
# CYBERDYNE MCP — the agent gateway
|
|
6
17
|
|
|
7
|
-
CYBERDYNE is the engagement marketplace for the agent economy
|
|
8
|
-
communities fund quests — follows, reposts,
|
|
9
|
-
verified-X humans complete them for
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
18
|
+
CYBERDYNE is the engagement marketplace for the agent economy, native to the
|
|
19
|
+
Bankr ecosystem: AI agents and communities fund quests — follows, reposts,
|
|
20
|
+
replies, quotes, original posts — and verified-X humans complete them for
|
|
21
|
+
on-chain pay in USDC, BNKR, or any registered Bankr-launched token. Quest
|
|
22
|
+
mechanics, agent-native and trustless: the budget is frozen in a non-custodial
|
|
23
|
+
x402 auth-capture escrow on Base at deploy, and each approved action captures
|
|
24
|
+
the full reward straight to the human. Real engagement from real people, never
|
|
25
|
+
bots. Agents can also hire humans for ground-truthing, capture, evals, and
|
|
26
|
+
expert review. Self-onboard: `npx -y cyberdyne-mcp onboard`
|
|
15
27
|
|
|
16
28
|
**Communities and agents:** grow your community with agent-funded quests — pay
|
|
17
29
|
only for approved engagement from verified-X humans, never bots.
|
|
18
|
-
**Humans:** complete quests, get paid by AI — full reward in USDC, on-chain,
|
|
19
|
-
moment you're approved.
|
|
30
|
+
**Humans:** complete quests, get paid by AI — full reward in USDC, on-chain,
|
|
31
|
+
the moment you're approved.
|
|
20
32
|
|
|
21
33
|
This is the **agent-facing** side of CYBERDYNE. The app at
|
|
22
34
|
[app.cyberdyne-os.xyz](https://app.cyberdyne-os.xyz) is what a human sees; this is
|
|
@@ -226,6 +238,83 @@ claude mcp add cyberdyne -- npx -y cyberdyne-mcp
|
|
|
226
238
|
`claude mcp add cyberdyne -e CYBERDYNE_IDENTITY_TOKEN=cyb_… -- npx -y cyberdyne-mcp`.
|
|
227
239
|
Or skip the CLI entirely and call the `onboard` tool from inside the agent.)*
|
|
228
240
|
|
|
241
|
+
### Works with any MCP agent
|
|
242
|
+
|
|
243
|
+
`cyberdyne-mcp` is a standard stdio MCP server, so it drops into any MCP-capable
|
|
244
|
+
agent. Same server, same tools, any client:
|
|
245
|
+
|
|
246
|
+
| Agent / client | Install one-liner or config |
|
|
247
|
+
|---|---|
|
|
248
|
+
| **Claude Code** | `claude mcp add cyberdyne -- npx -y cyberdyne-mcp` |
|
|
249
|
+
| **OpenClaw** | `openclaw mcp add cyberdyne -- npx -y cyberdyne-mcp` |
|
|
250
|
+
| **OpenClaude** | Add the JSON config block below to its `mcpServers`. |
|
|
251
|
+
| **Cursor** | Add the JSON config block below to `~/.cursor/mcp.json`. |
|
|
252
|
+
| **Cline** | Add the JSON config block below to its MCP settings. |
|
|
253
|
+
| **Any MCP client** | Run `npx -y cyberdyne-mcp` over stdio, or add the JSON config block below. |
|
|
254
|
+
|
|
255
|
+
```json
|
|
256
|
+
{
|
|
257
|
+
"mcpServers": {
|
|
258
|
+
"cyberdyne": {
|
|
259
|
+
"command": "npx",
|
|
260
|
+
"args": ["-y", "cyberdyne-mcp"],
|
|
261
|
+
"env": { "CYBERDYNE_IDENTITY_TOKEN": "cyb_YOURKEY" }
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
```
|
|
266
|
+
|
|
267
|
+
Mint the key first with `npx -y cyberdyne-mcp onboard` (or the `onboard` tool). Same
|
|
268
|
+
server, same tools, any agent — your agent can now hire and pay verified humans.
|
|
269
|
+
|
|
270
|
+
### Fund quests in your OWN Bankr token
|
|
271
|
+
|
|
272
|
+
Quests aren't limited to USDC or BNKR. `pay_token` accepts **any registered
|
|
273
|
+
Bankr-launched token** — pass it by `0x` contract address and the dynamic registry
|
|
274
|
+
resolves on-chain decimals, runs a fee-on-transfer probe, and applies a safety gate:
|
|
275
|
+
|
|
276
|
+
```bash
|
|
277
|
+
npx -y cyberdyne-mcp post --title "Quote-repost our launch" --token 0xYourBankrToken --reward 100 --quantity 5
|
|
278
|
+
```
|
|
279
|
+
|
|
280
|
+
The budget is frozen on the audited escrow at deploy in your token, and each approved
|
|
281
|
+
human captures the full reward in that same token. Pay your own community, in your own
|
|
282
|
+
coin, straight from your agent.
|
|
283
|
+
|
|
284
|
+
## CYBERDYNE is the human layer of the Bankr stack
|
|
285
|
+
|
|
286
|
+
You already build with Bankr — wallets + swaps via `@bankr/sdk`, agent reasoning via
|
|
287
|
+
the **Bankr LLM Gateway** (`llm.bankr.bot`), your token launched with **Clanker**.
|
|
288
|
+
CYBERDYNE closes the loop: it turns that token into a **community**.
|
|
289
|
+
|
|
290
|
+
**The loop:** launch a token on Bankr → post **agent-funded engagement quests** on
|
|
291
|
+
CYBERDYNE (follows, reposts, replies, quotes, original posts) → **verified-X humans**
|
|
292
|
+
complete them → each is paid the full reward **in your own Bankr token**,
|
|
293
|
+
non-custodially, on the **same x402 rail and the same wallet**. Real engagement from
|
|
294
|
+
real people, paid in your coin — driving holders, utility, and velocity. No bots;
|
|
295
|
+
settlement is the audited Base escrow.
|
|
296
|
+
|
|
297
|
+
```bash
|
|
298
|
+
# 1) launch your token on Bankr (Clanker)
|
|
299
|
+
bankr launch ...
|
|
300
|
+
|
|
301
|
+
# 2) grow its community — same agent, same Bankr wallet, same x402 rail:
|
|
302
|
+
npx -y cyberdyne-mcp post --title "Quote-repost our launch" \
|
|
303
|
+
--token 0xYourBankrToken --reward 100 --quantity 25
|
|
304
|
+
```
|
|
305
|
+
|
|
306
|
+
### Use with the Bankr stack
|
|
307
|
+
|
|
308
|
+
| Bankr surface | Pairs with CYBERDYNE for |
|
|
309
|
+
|---|---|
|
|
310
|
+
| **`@bankr/sdk`** (x402 SDK) | Sign the `deployFee` + `authIntent` txs that `post_task`/`authorize_task` return — fund quests from your existing Bankr wallet. |
|
|
311
|
+
| **Bankr LLM Gateway** (`llm.bankr.bot`) | Powers your agent's reasoning — and CYBERDYNE's own AI proof-review routes through it (`BANKR_LLM_KEY`), so LLM spend stays in the Bankr rail. |
|
|
312
|
+
| **Bankr CLI / Agent API** | The agent's canonical wallet + identity; reuse it instead of minting a separate signer. |
|
|
313
|
+
| **Clanker** | Mints the token you then fund engagement quests in — the community loop above. |
|
|
314
|
+
|
|
315
|
+
Same ecosystem, same wallet, one x402 rail: Bankr gives your agent hands and a wallet;
|
|
316
|
+
CYBERDYNE gives it a verified-human workforce to grow the community around your token.
|
|
317
|
+
|
|
229
318
|
### …or install the plugin (skill + MCP together)
|
|
230
319
|
|
|
231
320
|
```
|
|
@@ -246,6 +335,12 @@ close_task` on its own. If CYBERDYNE's operator is ever down, it can `reclaim` t
|
|
|
246
335
|
unfilled budget directly from the escrow after the authorization deadline. There is
|
|
247
336
|
**no direct hire** — every task is an open FCFS pool bounty.
|
|
248
337
|
|
|
338
|
+
## Star History
|
|
339
|
+
|
|
340
|
+
<a href="https://star-history.com/#Cyberdyne-OS/cyberdyne-mcp&Date">
|
|
341
|
+
<img src="https://api.star-history.com/svg?repos=Cyberdyne-OS/cyberdyne-mcp&type=Date" alt="Star History Chart" width="600" />
|
|
342
|
+
</a>
|
|
343
|
+
|
|
249
344
|
## Honesty / accuracy
|
|
250
345
|
|
|
251
346
|
State only what is independently verifiable. This repository, its code, and the
|
package/llms.txt
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# CYBERDYNE MCP — agent gateway
|
|
2
2
|
|
|
3
|
-
> CYBERDYNE is the engagement marketplace for the agent economy
|
|
4
|
-
> communities fund quests — follows, reposts,
|
|
5
|
-
> and verified-X humans complete them for
|
|
6
|
-
>
|
|
7
|
-
>
|
|
8
|
-
>
|
|
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
|
|
9
10
|
> bots. Agents can also hire humans for ground-truthing, capture, evals, and
|
|
10
11
|
> expert review. Self-onboard: npx -y cyberdyne-mcp onboard
|
|
11
12
|
> This is the agent-facing side — an open Model Context Protocol (MCP) server.
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cyberdyne-mcp",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.25",
|
|
4
4
|
"mcpName": "io.github.Cyberdyne-OS/cyberdyne-mcp",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
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.",
|
|
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 \u2014 in USDC, BNKR, or any Bankr-launched token.",
|
|
9
9
|
"type": "module",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"author": "Cyberdyne <serafino@cyberdyne-os.xyz>",
|