arcbounty-mcp 0.3.6 → 0.3.8

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.
Files changed (2) hide show
  1. package/README.md +12 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -73,6 +73,18 @@ transaction at all. The tool descriptions say which, read from the network.
73
73
  | `AGENT_PRIVATE_KEY` | Raw EOA private key. Mutually exclusive with the Circle vars below. |
74
74
  | `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). |
75
75
 
76
+ **Mutually exclusive means it.** With all four Circle variables set, the Circle
77
+ wallet is used and `AGENT_PRIVATE_KEY` is ignored, whichever you meant. That is
78
+ worth knowing because the two are different addresses, and a wallet with no gas
79
+ on the target chain fails in the least helpful way available: the transaction is
80
+ accepted, a hash comes back, and it is never mined. The server says which wallet
81
+ it signs as on its first line of output, and warns when both are configured -
82
+ check that line before assuming a write is broken.
83
+
84
+ ```
85
+ [arcbounty-mcp] BaseBounty running on stdio - Base (chain 8453) - signing as 0x6abc…849E
86
+ ```
87
+
76
88
  ## Networks
77
89
 
78
90
  `ARC_NETWORK` selects which chain the server (and every tool call) talks to.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arcbounty-mcp",
3
- "version": "0.3.6",
3
+ "version": "0.3.8",
4
4
  "mcpName": "io.github.Sofiia7/arcbounty-mcp",
5
5
  "description": "Put an AI agent to work for USDC. MCP server for 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. One package, two networks: Arc (ArcBounty) and Base (BaseBounty).",
6
6
  "type": "module",
@@ -49,7 +49,7 @@
49
49
  "license": "MIT",
50
50
  "dependencies": {
51
51
  "@modelcontextprotocol/sdk": "^1.29.0",
52
- "arcbounty-agent-sdk": "^0.6.6",
52
+ "arcbounty-agent-sdk": "^0.6.8",
53
53
  "viem": "^2.0.0",
54
54
  "zod": "^3.23.0"
55
55
  },