arcbounty-mcp 0.2.2 → 0.2.3
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 -44
- package/package.json +1 -1
package/.env.example
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
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
|
|
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
|
|
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=""
|
|
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "arcbounty-mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"mcpName": "io.github.Sofiia7/arcbounty-mcp",
|
|
5
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",
|