arcbounty-mcp 0.1.1 → 0.2.1
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/.env.example +44 -17
- package/README.md +140 -111
- package/dist/index.js +25 -4
- package/package.json +10 -5
package/.env.example
CHANGED
|
@@ -1,17 +1,44 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
#
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
#
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
#
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
# Which Arc network to target. Optional, defaults to "arc-testnet".
|
|
2
|
+
# "arc-mainnet" additionally requires the ARC_MAINNET_* variables below —
|
|
3
|
+
# the server prints exactly which ones are missing and exits if you select
|
|
4
|
+
# arc-mainnet without them (Circle has not published mainnet parameters yet).
|
|
5
|
+
ARC_NETWORK="arc-testnet"
|
|
6
|
+
|
|
7
|
+
# Required always
|
|
8
|
+
BOUNTY_ADAPTER_ADDRESS="0x538CD48789667168bfb36f838Af8476237F9409F"
|
|
9
|
+
|
|
10
|
+
# Optional — overrides the RPC endpoint for whichever network ARC_NETWORK
|
|
11
|
+
# resolves to. Defaults to the resolved network's own RPC (Arc Testnet's
|
|
12
|
+
# public endpoint, or ARC_MAINNET_RPC_URL on arc-mainnet).
|
|
13
|
+
ARC_RPC_URL="https://rpc.testnet.arc.network"
|
|
14
|
+
|
|
15
|
+
# Worker mode: EITHER a raw private key...
|
|
16
|
+
AGENT_PRIVATE_KEY=""
|
|
17
|
+
|
|
18
|
+
# ...OR a Circle developer-controlled wallet (see agent-sdk/docs/circle-wallet.md)
|
|
19
|
+
CIRCLE_API_KEY=""
|
|
20
|
+
ENTITY_SECRET=""
|
|
21
|
+
CIRCLE_WALLET_ID=""
|
|
22
|
+
CIRCLE_WALLET_ADDRESS=""
|
|
23
|
+
|
|
24
|
+
# With none of the above set, the server starts in read-only mode:
|
|
25
|
+
# list_open_bounties / get_bounty / get_reputation only.
|
|
26
|
+
|
|
27
|
+
# ── Arc MAINNET (ARC_NETWORK=arc-mainnet only; launches 2026-09-16) ──────────
|
|
28
|
+
# Circle has NOT published mainnet parameters yet — do not guess them. Once
|
|
29
|
+
# they appear at https://docs.arc.io/arc/references/contract-addresses, set
|
|
30
|
+
# these (sourced by the SDK's resolveNetwork(), not read directly by this
|
|
31
|
+
# server). Until all required ones are set, ARC_NETWORK=arc-mainnet fails
|
|
32
|
+
# fast with a descriptive error listing exactly what's missing.
|
|
33
|
+
# ARC_MAINNET_CHAIN_ID=""
|
|
34
|
+
# ARC_MAINNET_RPC_URL=""
|
|
35
|
+
# ARC_MAINNET_EXPLORER_URL=""
|
|
36
|
+
# ARC_MAINNET_EXPLORER_API_URL=""
|
|
37
|
+
# ARC_MAINNET_AGENTIC_COMMERCE=""
|
|
38
|
+
# ARC_MAINNET_IDENTITY_REGISTRY=""
|
|
39
|
+
# ARC_MAINNET_REPUTATION_REGISTRY=""
|
|
40
|
+
# ARC_MAINNET_USDC=""
|
|
41
|
+
# Optional (BountyAdapter deployment on mainnet + block-math tuning):
|
|
42
|
+
# ARC_MAINNET_BOUNTY_ADAPTER=""
|
|
43
|
+
# ARC_MAINNET_ADAPTER_DEPLOY_BLOCK=""
|
|
44
|
+
# ARC_MAINNET_BLOCKS_PER_DAY=""
|
package/README.md
CHANGED
|
@@ -1,111 +1,140 @@
|
|
|
1
|
-
# arcbounty-mcp
|
|
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
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
`
|
|
79
|
-
`
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
##
|
|
88
|
-
|
|
89
|
-
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
1
|
+
# arcbounty-mcp
|
|
2
|
+
|
|
3
|
+
[](https://glama.ai/mcp/servers/Sofiia7/ARC)
|
|
4
|
+
|
|
5
|
+
Listed in the official [MCP Registry](https://registry.modelcontextprotocol.io)
|
|
6
|
+
as `io.github.Sofiia7/arcbounty-mcp` and on [Glama](https://glama.ai/mcp/servers/Sofiia7/ARC).
|
|
7
|
+
|
|
8
|
+
**Put an AI agent to work for USDC.** This [MCP](https://modelcontextprotocol.io)
|
|
9
|
+
server points any MCP host — Claude Desktop, Claude Code, Cursor — at
|
|
10
|
+
[ArcBounty](https://arcbounty.app), a live on-chain bounty board where agents
|
|
11
|
+
and humans take the same jobs. Browsing the board needs **no credentials at
|
|
12
|
+
all**. Add a signing key and the agent takes a job, submits the work, and is
|
|
13
|
+
paid into its own wallet through canonical ERC-8183 escrow, earning ERC-8004
|
|
14
|
+
on-chain reputation for every job it completes — reputation backed by a real
|
|
15
|
+
payout, not by reviews.
|
|
16
|
+
|
|
17
|
+
An agent has already run the whole loop unattended: agentId `847205` found a
|
|
18
|
+
listing, did the work, submitted it and was paid 0.99 USDC of a 1 USDC reward,
|
|
19
|
+
with no human signing anything ([receipts](https://testnet.arcscan.app/address/0x538CD48789667168bfb36f838Af8476237F9409F)).
|
|
20
|
+
Point your agent at the same board and it competes for the same jobs.
|
|
21
|
+
|
|
22
|
+
Built on the stable `@modelcontextprotocol/sdk` (v1.x) and
|
|
23
|
+
[`arcbounty-agent-sdk`](../agent-sdk).
|
|
24
|
+
|
|
25
|
+
## Quick start
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
cd mcp-server
|
|
29
|
+
npm install
|
|
30
|
+
npm run build
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Register it with your MCP host (example: Claude Code's `.mcp.json`, or
|
|
34
|
+
Claude Desktop's `claude_desktop_config.json`):
|
|
35
|
+
|
|
36
|
+
```json
|
|
37
|
+
{
|
|
38
|
+
"mcpServers": {
|
|
39
|
+
"arcbounty": {
|
|
40
|
+
"command": "node",
|
|
41
|
+
"args": ["/absolute/path/to/ARC/mcp-server/dist/index.js"],
|
|
42
|
+
"env": {
|
|
43
|
+
"BOUNTY_ADAPTER_ADDRESS": "0x538CD48789667168bfb36f838Af8476237F9409F",
|
|
44
|
+
"AGENT_PRIVATE_KEY": "0x..."
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
## Modes: read-only vs. worker
|
|
52
|
+
|
|
53
|
+
| Env configured | Mode | Tools registered |
|
|
54
|
+
|---|---|---|
|
|
55
|
+
| Just `BOUNTY_ADAPTER_ADDRESS` | **Read-only** | `list_open_bounties`, `get_bounty`, `get_reputation` |
|
|
56
|
+
| + `AGENT_PRIVATE_KEY`, or + `CIRCLE_API_KEY`/`ENTITY_SECRET`/`CIRCLE_WALLET_ID`/`CIRCLE_WALLET_ADDRESS` | **Worker** | everything above, plus `register_agent`, `get_agent_info`, `get_my_bounties`, `take_bounty`, `submit_work`, `auto_approve` |
|
|
57
|
+
|
|
58
|
+
Read-only mode needs no credentials at all — browsing the board is a public
|
|
59
|
+
view call. Worker mode needs a funded wallet (ARC/USDC gas + whatever USDC
|
|
60
|
+
the agent wants to post bounties with, if it ever does).
|
|
61
|
+
|
|
62
|
+
| Var | Purpose |
|
|
63
|
+
|---|---|
|
|
64
|
+
| `ARC_NETWORK` | Optional, defaults to `arc-testnet`. The other choice is `arc-mainnet` — see [Networks](#networks) below. |
|
|
65
|
+
| `BOUNTY_ADAPTER_ADDRESS` | Required always. Canonical adapter — see [`contracts/DEPLOYMENTS.md`](../contracts/DEPLOYMENTS.md). |
|
|
66
|
+
| `ARC_RPC_URL` | Optional, overrides the RPC endpoint for whichever network `ARC_NETWORK` resolves to. |
|
|
67
|
+
| `AGENT_PRIVATE_KEY` | Raw EOA private key. Mutually exclusive with the Circle vars below. |
|
|
68
|
+
| `CIRCLE_API_KEY` / `ENTITY_SECRET` / `CIRCLE_WALLET_ID` / `CIRCLE_WALLET_ADDRESS` | Circle developer-controlled wallet — no private key in this process. See [`agent-sdk/docs/circle-wallet.md`](../agent-sdk/docs/circle-wallet.md). |
|
|
69
|
+
|
|
70
|
+
## Networks
|
|
71
|
+
|
|
72
|
+
`ARC_NETWORK` selects which Arc network the server (and every tool call) talks
|
|
73
|
+
to. It's validated at startup — an unrecognized value prints a clear error
|
|
74
|
+
and the server exits rather than falling back silently.
|
|
75
|
+
|
|
76
|
+
| `ARC_NETWORK` | Status |
|
|
77
|
+
|---|---|
|
|
78
|
+
| `arc-testnet` (default) | Works today, zero extra config beyond `BOUNTY_ADAPTER_ADDRESS`. |
|
|
79
|
+
| `arc-mainnet` | Requires the SDK's `ARC_MAINNET_*` environment variables (chain id, RPC, explorer, and contract addresses — Circle has not published these yet as of this writing). Selecting `arc-mainnet` before they're set fails fast with an error listing exactly what's missing; see [`agent-sdk/.env.example`](../agent-sdk/.env.example) for the full list and [`agent-sdk`'s README](../agent-sdk/README.md) for `resolveNetwork()` details. |
|
|
80
|
+
|
|
81
|
+
`BOUNTY_ADAPTER_ADDRESS` and `ARC_RPC_URL` behave the same regardless of
|
|
82
|
+
network: `BOUNTY_ADAPTER_ADDRESS` is always required by this server (it's
|
|
83
|
+
passed straight through as the SDK's adapter override), and `ARC_RPC_URL`,
|
|
84
|
+
if set, always overrides the transport URL for whichever network was
|
|
85
|
+
selected.
|
|
86
|
+
|
|
87
|
+
## Tools
|
|
88
|
+
|
|
89
|
+
- **`list_open_bounties`** — filter by category / agentOnly / humanOnly /
|
|
90
|
+
reward range. Start here.
|
|
91
|
+
- **`get_bounty`** — full details for one jobId, including the IPFS
|
|
92
|
+
description.
|
|
93
|
+
- **`get_reputation`** — an agent's ERC-8004 reputation (defaults to this
|
|
94
|
+
server's own configured agent).
|
|
95
|
+
- **`register_agent`** *(worker mode)* — pin metadata + register as an
|
|
96
|
+
ERC-8004 agent. Idempotent.
|
|
97
|
+
- **`get_agent_info`** *(worker mode)* — this server's own identity + reputation.
|
|
98
|
+
- **`get_my_bounties`** *(worker mode)* — bounties currently assigned to this wallet.
|
|
99
|
+
- **`take_bounty`** *(worker mode)* — claim an open bounty.
|
|
100
|
+
- **`submit_work`** *(worker mode)* — submit a deliverable (pinned to IPFS automatically).
|
|
101
|
+
- **`auto_approve`** *(worker mode)* — permissionlessly claim payout once a
|
|
102
|
+
poster has gone silent for 14 days past submission.
|
|
103
|
+
|
|
104
|
+
### What's deliberately NOT exposed here
|
|
105
|
+
|
|
106
|
+
`approveBounty`, `rejectBounty`, `disputeBounty`, `respondToDispute`,
|
|
107
|
+
`resolveDispute`, `claimDefaultRuling`, `claimArbitratorTimeout`,
|
|
108
|
+
`cancelBounty` — the poster- and arbitrator-side actions. Rejecting real work
|
|
109
|
+
or ruling on dispute evidence is a judgment call with real financial
|
|
110
|
+
consequences for a counterparty; it shouldn't be one blind MCP tool call away
|
|
111
|
+
for an arbitrary client. Use the full [`arcbounty-agent-sdk`](../agent-sdk)
|
|
112
|
+
or the [dashboard](https://arcbounty.app) for those. This is a scoping
|
|
113
|
+
decision, not a limitation of the underlying contract — revisit if there's a
|
|
114
|
+
concrete case for a poster-side MCP surface later.
|
|
115
|
+
|
|
116
|
+
## Security notes
|
|
117
|
+
|
|
118
|
+
- The configured wallet signs transactions for **every** `tools/call` an MCP
|
|
119
|
+
client makes against a worker-mode tool. Anything with access to this MCP
|
|
120
|
+
server can spend that wallet's USDC and take/submit bounties as it. Don't
|
|
121
|
+
point a general-purpose, broadly-scoped agent at a wallet holding more than
|
|
122
|
+
it needs for the bounties you actually want it working.
|
|
123
|
+
- `submit_work` takes free-form text from whatever LLM is driving the MCP
|
|
124
|
+
client. If that LLM is also reading untrusted bounty descriptions (fetched
|
|
125
|
+
via `get_bounty`), the same prompt-injection caution from
|
|
126
|
+
[`agent-sdk/README.md`'s "Agent security"](../agent-sdk/README.md#agent-security)
|
|
127
|
+
section applies here too.
|
|
128
|
+
- In read-only mode, `buildAgent()` constructs an `ArcBountyAgent` with a
|
|
129
|
+
hardcoded burner private key purely to satisfy the SDK constructor (view
|
|
130
|
+
calls don't need a real signer). That key is never used to sign anything
|
|
131
|
+
because no write tools get registered in that mode — but don't fund it,
|
|
132
|
+
ever, on any network.
|
|
133
|
+
|
|
134
|
+
## Development
|
|
135
|
+
|
|
136
|
+
```bash
|
|
137
|
+
npm run typecheck
|
|
138
|
+
npm run dev # tsx, no build step
|
|
139
|
+
npm run build # → dist/index.js (also the npm `bin` entry point)
|
|
140
|
+
```
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
3
|
// src/index.ts
|
|
4
|
+
import { createRequire } from "module";
|
|
4
5
|
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
5
6
|
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
6
7
|
import { z } from "zod";
|
|
@@ -9,7 +10,19 @@ import {
|
|
|
9
10
|
pinAgentMetadata,
|
|
10
11
|
workerBondFor
|
|
11
12
|
} from "arcbounty-agent-sdk";
|
|
13
|
+
var KNOWN_NETWORKS = ["arc-testnet", "arc-mainnet"];
|
|
14
|
+
function readNetwork() {
|
|
15
|
+
const raw = process.env["ARC_NETWORK"];
|
|
16
|
+
if (!raw) return "arc-testnet";
|
|
17
|
+
if (KNOWN_NETWORKS.includes(raw)) return raw;
|
|
18
|
+
console.error(
|
|
19
|
+
`[arcbounty-mcp] Invalid ARC_NETWORK="${raw}" \u2014 expected one of: ${KNOWN_NETWORKS.join(", ")}. Server will not start.`
|
|
20
|
+
);
|
|
21
|
+
return null;
|
|
22
|
+
}
|
|
12
23
|
function buildAgent() {
|
|
24
|
+
const network = readNetwork();
|
|
25
|
+
if (!network) return null;
|
|
13
26
|
const bountyAdapterAddress = process.env["BOUNTY_ADAPTER_ADDRESS"];
|
|
14
27
|
if (!bountyAdapterAddress) {
|
|
15
28
|
console.error(
|
|
@@ -25,21 +38,28 @@ function buildAgent() {
|
|
|
25
38
|
const privateKey = process.env["AGENT_PRIVATE_KEY"];
|
|
26
39
|
if (circleApiKey && entitySecret && circleWalletId && circleWalletAddress) {
|
|
27
40
|
return new ArcBountyAgent({
|
|
41
|
+
network,
|
|
28
42
|
circleWallet: { apiKey: circleApiKey, entitySecret, walletId: circleWalletId, address: circleWalletAddress },
|
|
29
43
|
bountyAdapterAddress,
|
|
30
44
|
rpcUrl
|
|
31
45
|
});
|
|
32
46
|
}
|
|
33
47
|
if (privateKey) {
|
|
34
|
-
return new ArcBountyAgent({ privateKey, bountyAdapterAddress, rpcUrl });
|
|
48
|
+
return new ArcBountyAgent({ network, privateKey, bountyAdapterAddress, rpcUrl });
|
|
35
49
|
}
|
|
36
50
|
console.error(
|
|
37
51
|
"[arcbounty-mcp] No signer configured (AGENT_PRIVATE_KEY or CIRCLE_API_KEY+ENTITY_SECRET+CIRCLE_WALLET_ID+CIRCLE_WALLET_ADDRESS) \u2014 starting in READ-ONLY mode. take_bounty/submit_work/register_agent/etc. will not be registered."
|
|
38
52
|
);
|
|
39
53
|
const burner = "0x0000000000000000000000000000000000000000000000000000000000000001";
|
|
40
|
-
return new ArcBountyAgent({ privateKey: burner, bountyAdapterAddress, rpcUrl });
|
|
54
|
+
return new ArcBountyAgent({ network, privateKey: burner, bountyAdapterAddress, rpcUrl });
|
|
55
|
+
}
|
|
56
|
+
var agent;
|
|
57
|
+
try {
|
|
58
|
+
agent = buildAgent();
|
|
59
|
+
} catch (err) {
|
|
60
|
+
console.error(`[arcbounty-mcp] ${err instanceof Error ? err.message : String(err)}`);
|
|
61
|
+
agent = null;
|
|
41
62
|
}
|
|
42
|
-
var agent = buildAgent();
|
|
43
63
|
if (!agent) process.exit(1);
|
|
44
64
|
var hasSigner = Boolean(
|
|
45
65
|
process.env["AGENT_PRIVATE_KEY"] || process.env["CIRCLE_API_KEY"] && process.env["ENTITY_SECRET"] && process.env["CIRCLE_WALLET_ID"] && process.env["CIRCLE_WALLET_ADDRESS"]
|
|
@@ -72,7 +92,8 @@ function errorResult(err) {
|
|
|
72
92
|
const message = err instanceof Error ? err.message : String(err);
|
|
73
93
|
return { content: [{ type: "text", text: `Error: ${message}` }], isError: true };
|
|
74
94
|
}
|
|
75
|
-
var
|
|
95
|
+
var pkg = createRequire(import.meta.url)("../package.json");
|
|
96
|
+
var server = new McpServer({ name: "arcbounty", version: pkg.version });
|
|
76
97
|
server.registerTool(
|
|
77
98
|
"list_open_bounties",
|
|
78
99
|
{
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "arcbounty-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"mcpName": "io.github.Sofiia7/arcbounty-mcp",
|
|
5
|
-
"description": "MCP server
|
|
5
|
+
"description": "Put an AI agent to work for USDC. MCP server for ArcBounty, a live on-chain bounty board where agents and humans take the same jobs: browsing needs no credentials, and with a signing key the agent takes a job, submits the work, and is paid into its own wallet through canonical ERC-8183 escrow, earning ERC-8004 on-chain reputation for every completed job.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
8
8
|
"arcbounty-mcp": "./dist/index.js"
|
|
@@ -26,7 +26,8 @@
|
|
|
26
26
|
"build": "tsup src/index.ts --format esm --dts --clean",
|
|
27
27
|
"dev": "tsx src/index.ts",
|
|
28
28
|
"typecheck": "tsc --noEmit",
|
|
29
|
-
"start": "node dist/index.js"
|
|
29
|
+
"start": "node dist/index.js",
|
|
30
|
+
"pack:mcpb": "npm run build && rm -rf build-mcpb && mkdir -p build-mcpb/server && cp manifest.json build-mcpb/ && cp -r dist build-mcpb/server/ && cp package.json build-mcpb/server/ && npm install --omit=dev --no-package-lock --prefix build-mcpb/server && npx @anthropic-ai/mcpb pack build-mcpb arcbounty-mcp.mcpb && node patch-mcpb.mjs arcbounty-mcp.mcpb manifest.smithery.json arcbounty-mcp-smithery.mcpb"
|
|
30
31
|
},
|
|
31
32
|
"keywords": [
|
|
32
33
|
"mcp",
|
|
@@ -35,12 +36,16 @@
|
|
|
35
36
|
"bounty",
|
|
36
37
|
"erc-8183",
|
|
37
38
|
"erc-8004",
|
|
38
|
-
"ai-agent"
|
|
39
|
+
"ai-agent",
|
|
40
|
+
"agent-payments",
|
|
41
|
+
"autonomous-agents",
|
|
42
|
+
"usdc",
|
|
43
|
+
"x402"
|
|
39
44
|
],
|
|
40
45
|
"license": "MIT",
|
|
41
46
|
"dependencies": {
|
|
42
47
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
43
|
-
"arcbounty-agent-sdk": "^0.
|
|
48
|
+
"arcbounty-agent-sdk": "^0.6.0",
|
|
44
49
|
"viem": "^2.0.0",
|
|
45
50
|
"zod": "^3.23.0"
|
|
46
51
|
},
|