@one-source/mcp 5.0.2 → 5.0.4
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 +21 -9
- package/README.npm.md +21 -9
- package/README.repo.md +18 -11
- package/package.json +1 -1
- package/skills/onesource-mcp-setup/SKILL.md +80 -24
package/README.md
CHANGED
|
@@ -101,14 +101,19 @@ All blockchain API tools accept an optional `network` parameter:
|
|
|
101
101
|
|
|
102
102
|
## Authentication
|
|
103
103
|
|
|
104
|
-
Blockchain API tools require authentication. Two options are available — API key takes priority
|
|
104
|
+
Blockchain API tools require authentication. Two options are available — if both are set, API key takes priority.
|
|
105
105
|
|
|
106
106
|
| Method | Variable | Description |
|
|
107
107
|
|--------|----------|-------------|
|
|
108
108
|
| API key | `ONESOURCE_API_KEY` | Unlimited calls, no per-call cost |
|
|
109
|
-
| x402 micropayments | `X402_PRIVATE_KEY` | Pay-per-call via USDC on Base |
|
|
109
|
+
| x402 micropayments | `X402_PRIVATE_KEY` | Pay-per-call via USDC on Base, no account required |
|
|
110
110
|
|
|
111
|
-
### Option 1: API Key
|
|
111
|
+
### Option 1: API Key
|
|
112
|
+
|
|
113
|
+
1. Go to [app.onesource.io](https://app.onesource.io) and create an account.
|
|
114
|
+
2. Subscribe to a developer plan (Stripe checkout).
|
|
115
|
+
3. Navigate to **API Keys** and generate a key.
|
|
116
|
+
4. Copy the key — it starts with `sk_`.
|
|
112
117
|
|
|
113
118
|
#### Claude Code
|
|
114
119
|
|
|
@@ -138,16 +143,19 @@ claude mcp add onesource -e ONESOURCE_API_KEY=<key> -- npx -y @one-source/mcp@la
|
|
|
138
143
|
ONESOURCE_API_KEY=<key> npx -y @one-source/mcp@latest
|
|
139
144
|
```
|
|
140
145
|
|
|
146
|
+
After adding, reload the MCP server and call `1s_setup_check` — it should show `Status: Configured (API key)`.
|
|
147
|
+
|
|
141
148
|
### Option 2: x402 Micropayments
|
|
142
149
|
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
150
|
+
Pay-per-call via USDC on Base using [x402](https://github.com/coinbase/x402). No account required — just an EVM wallet funded with USDC. The server handles payments transparently.
|
|
151
|
+
|
|
152
|
+
1. **Get an EVM private key** — export from MetaMask, Coinbase Wallet, or generate a fresh one. The key is a 64-character hex string. The `0x` prefix is optional — both formats are accepted.
|
|
153
|
+
2. **Pass the key to the server:**
|
|
146
154
|
|
|
147
155
|
#### Claude Code
|
|
148
156
|
|
|
149
157
|
```bash
|
|
150
|
-
claude mcp add onesource -e X402_PRIVATE_KEY
|
|
158
|
+
claude mcp add onesource -e X402_PRIVATE_KEY=<key> -- npx -y @one-source/mcp@latest
|
|
151
159
|
```
|
|
152
160
|
|
|
153
161
|
#### Claude Desktop / Cursor
|
|
@@ -159,7 +167,7 @@ claude mcp add onesource -e X402_PRIVATE_KEY=0x... -- npx -y @one-source/mcp@lat
|
|
|
159
167
|
"command": "npx",
|
|
160
168
|
"args": ["-y", "@one-source/mcp@latest"],
|
|
161
169
|
"env": {
|
|
162
|
-
"X402_PRIVATE_KEY": "
|
|
170
|
+
"X402_PRIVATE_KEY": "<key>"
|
|
163
171
|
}
|
|
164
172
|
}
|
|
165
173
|
}
|
|
@@ -169,9 +177,13 @@ claude mcp add onesource -e X402_PRIVATE_KEY=0x... -- npx -y @one-source/mcp@lat
|
|
|
169
177
|
#### Any MCP Client (stdio)
|
|
170
178
|
|
|
171
179
|
```bash
|
|
172
|
-
X402_PRIVATE_KEY
|
|
180
|
+
X402_PRIVATE_KEY=<key> npx -y @one-source/mcp@latest
|
|
173
181
|
```
|
|
174
182
|
|
|
183
|
+
3. **Reload and find your wallet address** — reload the MCP server, then call `1s_setup_check`. It will show the wallet address derived from your key under "Wallet address".
|
|
184
|
+
4. **Fund that address with USDC on Base** — send USDC to the address shown, on the [Base](https://base.org) network. A few dollars ($1–5 USDC) is enough for hundreds of calls. Bridge from Ethereum mainnet if needed using the [Base Bridge](https://bridge.base.org).
|
|
185
|
+
5. **Verify** — call `1s_network_info` for ethereum. If it returns chain data, payments are working.
|
|
186
|
+
|
|
175
187
|
### Security
|
|
176
188
|
|
|
177
189
|
Never commit keys to source control. Use environment variables, a `.env` file (excluded from git), or a secrets manager.
|
package/README.npm.md
CHANGED
|
@@ -101,14 +101,19 @@ All blockchain API tools accept an optional `network` parameter:
|
|
|
101
101
|
|
|
102
102
|
## Authentication
|
|
103
103
|
|
|
104
|
-
Blockchain API tools require authentication. Two options are available — API key takes priority
|
|
104
|
+
Blockchain API tools require authentication. Two options are available — if both are set, API key takes priority.
|
|
105
105
|
|
|
106
106
|
| Method | Variable | Description |
|
|
107
107
|
|--------|----------|-------------|
|
|
108
108
|
| API key | `ONESOURCE_API_KEY` | Unlimited calls, no per-call cost |
|
|
109
|
-
| x402 micropayments | `X402_PRIVATE_KEY` | Pay-per-call via USDC on Base |
|
|
109
|
+
| x402 micropayments | `X402_PRIVATE_KEY` | Pay-per-call via USDC on Base, no account required |
|
|
110
110
|
|
|
111
|
-
### Option 1: API Key
|
|
111
|
+
### Option 1: API Key
|
|
112
|
+
|
|
113
|
+
1. Go to [app.onesource.io](https://app.onesource.io) and create an account.
|
|
114
|
+
2. Subscribe to a developer plan (Stripe checkout).
|
|
115
|
+
3. Navigate to **API Keys** and generate a key.
|
|
116
|
+
4. Copy the key — it starts with `sk_`.
|
|
112
117
|
|
|
113
118
|
#### Claude Code
|
|
114
119
|
|
|
@@ -138,16 +143,19 @@ claude mcp add onesource -e ONESOURCE_API_KEY=<key> -- npx -y @one-source/mcp@la
|
|
|
138
143
|
ONESOURCE_API_KEY=<key> npx -y @one-source/mcp@latest
|
|
139
144
|
```
|
|
140
145
|
|
|
146
|
+
After adding, reload the MCP server and call `1s_setup_check` — it should show `Status: Configured (API key)`.
|
|
147
|
+
|
|
141
148
|
### Option 2: x402 Micropayments
|
|
142
149
|
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
150
|
+
Pay-per-call via USDC on Base using [x402](https://github.com/coinbase/x402). No account required — just an EVM wallet funded with USDC. The server handles payments transparently.
|
|
151
|
+
|
|
152
|
+
1. **Get an EVM private key** — export from MetaMask, Coinbase Wallet, or generate a fresh one. The key is a 64-character hex string. The `0x` prefix is optional — both formats are accepted.
|
|
153
|
+
2. **Pass the key to the server:**
|
|
146
154
|
|
|
147
155
|
#### Claude Code
|
|
148
156
|
|
|
149
157
|
```bash
|
|
150
|
-
claude mcp add onesource -e X402_PRIVATE_KEY
|
|
158
|
+
claude mcp add onesource -e X402_PRIVATE_KEY=<key> -- npx -y @one-source/mcp@latest
|
|
151
159
|
```
|
|
152
160
|
|
|
153
161
|
#### Claude Desktop / Cursor
|
|
@@ -159,7 +167,7 @@ claude mcp add onesource -e X402_PRIVATE_KEY=0x... -- npx -y @one-source/mcp@lat
|
|
|
159
167
|
"command": "npx",
|
|
160
168
|
"args": ["-y", "@one-source/mcp@latest"],
|
|
161
169
|
"env": {
|
|
162
|
-
"X402_PRIVATE_KEY": "
|
|
170
|
+
"X402_PRIVATE_KEY": "<key>"
|
|
163
171
|
}
|
|
164
172
|
}
|
|
165
173
|
}
|
|
@@ -169,9 +177,13 @@ claude mcp add onesource -e X402_PRIVATE_KEY=0x... -- npx -y @one-source/mcp@lat
|
|
|
169
177
|
#### Any MCP Client (stdio)
|
|
170
178
|
|
|
171
179
|
```bash
|
|
172
|
-
X402_PRIVATE_KEY
|
|
180
|
+
X402_PRIVATE_KEY=<key> npx -y @one-source/mcp@latest
|
|
173
181
|
```
|
|
174
182
|
|
|
183
|
+
3. **Reload and find your wallet address** — reload the MCP server, then call `1s_setup_check`. It will show the wallet address derived from your key under "Wallet address".
|
|
184
|
+
4. **Fund that address with USDC on Base** — send USDC to the address shown, on the [Base](https://base.org) network. A few dollars ($1–5 USDC) is enough for hundreds of calls. Bridge from Ethereum mainnet if needed using the [Base Bridge](https://bridge.base.org).
|
|
185
|
+
5. **Verify** — call `1s_network_info` for ethereum. If it returns chain data, payments are working.
|
|
186
|
+
|
|
175
187
|
### Security
|
|
176
188
|
|
|
177
189
|
Never commit keys to source control. Use environment variables, a `.env` file (excluded from git), or a secrets manager.
|
package/README.repo.md
CHANGED
|
@@ -101,16 +101,19 @@ All blockchain API tools accept an optional `network` parameter:
|
|
|
101
101
|
|
|
102
102
|
## Authentication
|
|
103
103
|
|
|
104
|
-
Blockchain API tools require authentication. Two options are available — API key takes priority
|
|
104
|
+
Blockchain API tools require authentication. Two options are available — if both are set, API key takes priority.
|
|
105
105
|
|
|
106
106
|
| Method | Variable | Description |
|
|
107
107
|
|--------|----------|-------------|
|
|
108
108
|
| API key | `ONESOURCE_API_KEY` | Unlimited calls, no per-call cost |
|
|
109
|
-
| x402 micropayments | `X402_PRIVATE_KEY` | Pay-per-call via USDC on Base |
|
|
109
|
+
| x402 micropayments | `X402_PRIVATE_KEY` | Pay-per-call via USDC on Base, no account required |
|
|
110
110
|
|
|
111
|
-
### Option 1: API Key
|
|
111
|
+
### Option 1: API Key
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
1. Go to [app.onesource.io](https://app.onesource.io) and create an account.
|
|
114
|
+
2. Subscribe to a developer plan (Stripe checkout).
|
|
115
|
+
3. Navigate to **API Keys** and generate a key.
|
|
116
|
+
4. Copy the key — it starts with `sk_`.
|
|
114
117
|
|
|
115
118
|
#### Claude Code
|
|
116
119
|
|
|
@@ -142,18 +145,22 @@ Add the `env` block to your MCP config:
|
|
|
142
145
|
ONESOURCE_API_KEY=<key> npx -y @one-source/mcp@latest
|
|
143
146
|
```
|
|
144
147
|
|
|
148
|
+
After adding, reload the MCP server and call `1s_setup_check` — it should show `Status: Configured (API key)`.
|
|
149
|
+
|
|
145
150
|
### Option 2: x402 Micropayments
|
|
146
151
|
|
|
147
|
-
Blockchain API endpoints are priced in USDC on Base via [x402](https://github.com/coinbase/x402). When you set `X402_PRIVATE_KEY`, the server automatically handles payments — tool calls
|
|
152
|
+
Blockchain API endpoints are priced in USDC on Base via [x402](https://github.com/coinbase/x402). When you set `X402_PRIVATE_KEY`, the server automatically handles payments — tool calls are paid and retried transparently without any extra work from the agent.
|
|
148
153
|
|
|
149
|
-
1. **Get an EVM private key** — export one from MetaMask, Coinbase Wallet, or any EVM wallet. The key is a 64-character hex string. The `0x` prefix is optional — both formats are accepted.
|
|
150
|
-
2. **
|
|
151
|
-
3. **
|
|
154
|
+
1. **Get an EVM private key** — export one from MetaMask, Coinbase Wallet, or any EVM wallet, or generate a fresh one. The key is a 64-character hex string. The `0x` prefix is optional — both formats are accepted.
|
|
155
|
+
2. **Pass the key to the server** using one of the methods below.
|
|
156
|
+
3. **Reload and find your wallet address** — reload the MCP server, then call `1s_setup_check`. It will show the wallet address derived from your key under "Wallet address".
|
|
157
|
+
4. **Fund that address with USDC on Base** — send USDC to the address shown in `1s_setup_check`, on the [Base](https://base.org) network. A few dollars ($1–5 USDC) is enough for hundreds of calls. If your USDC is on Ethereum mainnet, bridge it using the [Base Bridge](https://bridge.base.org).
|
|
158
|
+
5. **Verify** — call `1s_network_info` for ethereum. If it returns chain data (block number, gas price), x402 payments are working end-to-end.
|
|
152
159
|
|
|
153
160
|
#### Claude Code
|
|
154
161
|
|
|
155
162
|
```bash
|
|
156
|
-
claude mcp add onesource -e X402_PRIVATE_KEY
|
|
163
|
+
claude mcp add onesource -e X402_PRIVATE_KEY=<key> -- npx -y @one-source/mcp@latest
|
|
157
164
|
```
|
|
158
165
|
|
|
159
166
|
#### Claude Desktop / Cursor
|
|
@@ -167,7 +174,7 @@ Add the `env` block to your MCP config:
|
|
|
167
174
|
"command": "npx",
|
|
168
175
|
"args": ["-y", "@one-source/mcp@latest"],
|
|
169
176
|
"env": {
|
|
170
|
-
"X402_PRIVATE_KEY": "
|
|
177
|
+
"X402_PRIVATE_KEY": "<key>"
|
|
171
178
|
}
|
|
172
179
|
}
|
|
173
180
|
}
|
|
@@ -177,7 +184,7 @@ Add the `env` block to your MCP config:
|
|
|
177
184
|
#### Any MCP Client (stdio)
|
|
178
185
|
|
|
179
186
|
```bash
|
|
180
|
-
X402_PRIVATE_KEY
|
|
187
|
+
X402_PRIVATE_KEY=<key> npx -y @one-source/mcp@latest
|
|
181
188
|
```
|
|
182
189
|
|
|
183
190
|
### Config File Locations
|
package/package.json
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: onesource-mcp-setup
|
|
3
3
|
description: >-
|
|
4
|
-
Guide for installing and configuring the OneSource MCP server
|
|
5
|
-
|
|
4
|
+
Guide for installing and configuring the OneSource MCP server. Covers both
|
|
5
|
+
authentication options (API key and x402 micropayments), wallet setup, USDC
|
|
6
6
|
funding on Base, and verification. Use when a user needs help setting up
|
|
7
|
-
OneSource MCP or configuring
|
|
7
|
+
OneSource MCP or configuring either auth method.
|
|
8
8
|
---
|
|
9
9
|
|
|
10
10
|
# OneSource MCP Setup Guide
|
|
11
11
|
|
|
12
|
-
OneSource MCP provides 24 tools for blockchain data and live chain queries. Blockchain API tools require authentication — either an API key (`ONESOURCE_API_KEY`) or x402 micropayments in USDC on the Base network (`X402_PRIVATE_KEY`).
|
|
12
|
+
OneSource MCP provides 24 tools for blockchain data and live chain queries. Blockchain API tools require authentication — either an API key (`ONESOURCE_API_KEY`) or x402 micropayments in USDC on the Base network (`X402_PRIVATE_KEY`). If both are set, API key takes priority.
|
|
13
13
|
|
|
14
14
|
## Before You Start
|
|
15
15
|
|
|
16
|
-
**Always call `1s_setup_check` before using any other OneSource tools.** This checks the installed version against the latest release and reports
|
|
16
|
+
**Always call `1s_setup_check` before using any other OneSource tools.** This checks the installed version against the latest release and reports authentication status.
|
|
17
17
|
|
|
18
18
|
- **If an update is available:** Tell the user and help them update before proceeding. Run `npx -y @one-source/mcp@latest` to get the latest version. The update takes effect on the next session — the user will need to restart their MCP client.
|
|
19
19
|
- **If `1s_setup_check` is not available:** The MCP is either not installed or running a version before this tool existed. Help the user install or update using the instructions in Step 2 below.
|
|
20
|
-
- **If
|
|
20
|
+
- **If auth is not configured:** The tool will include setup instructions. Walk the user through them before attempting API calls.
|
|
21
21
|
|
|
22
22
|
Do not skip this step — outdated versions may be missing tools, fixes, or protocol changes.
|
|
23
23
|
|
|
@@ -25,8 +25,8 @@ Do not skip this step — outdated versions may be missing tools, fixes, or prot
|
|
|
25
25
|
|
|
26
26
|
Call the `1s_setup_check` tool. It reports:
|
|
27
27
|
- Server version (current vs latest)
|
|
28
|
-
-
|
|
29
|
-
- Wallet address (if configured)
|
|
28
|
+
- Which auth method is active (API key, x402), or whether auth is not yet configured
|
|
29
|
+
- Wallet address (if x402 is configured)
|
|
30
30
|
- API backend connectivity
|
|
31
31
|
|
|
32
32
|
If the tool is not available, the MCP is not installed — go to Step 2.
|
|
@@ -70,7 +70,57 @@ npm view @one-source/mcp version
|
|
|
70
70
|
|
|
71
71
|
To update, reinstall with `@latest` or clear the npx cache: `npx -y @one-source/mcp@latest`.
|
|
72
72
|
|
|
73
|
-
## Step 3:
|
|
73
|
+
## Step 3: Configure Authentication
|
|
74
|
+
|
|
75
|
+
Choose one option. If both are set, API key takes priority.
|
|
76
|
+
|
|
77
|
+
### Option A: API Key
|
|
78
|
+
|
|
79
|
+
1. Go to [app.onesource.io](https://app.onesource.io) and create an account.
|
|
80
|
+
2. Subscribe to a developer plan (Stripe checkout).
|
|
81
|
+
3. Navigate to **API Keys** and generate a key.
|
|
82
|
+
4. Copy the key — it starts with `sk_`.
|
|
83
|
+
|
|
84
|
+
#### Claude Code
|
|
85
|
+
|
|
86
|
+
```bash
|
|
87
|
+
claude mcp remove onesource
|
|
88
|
+
claude mcp add onesource -e ONESOURCE_API_KEY=<key> -- npx -y @one-source/mcp@latest
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
#### Claude Desktop / Cursor
|
|
92
|
+
|
|
93
|
+
Add the `env` block to your MCP config:
|
|
94
|
+
|
|
95
|
+
```json
|
|
96
|
+
{
|
|
97
|
+
"mcpServers": {
|
|
98
|
+
"onesource": {
|
|
99
|
+
"command": "npx",
|
|
100
|
+
"args": ["-y", "@one-source/mcp@latest"],
|
|
101
|
+
"env": {
|
|
102
|
+
"ONESOURCE_API_KEY": "<key>"
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
#### Any MCP Client (stdio)
|
|
110
|
+
|
|
111
|
+
```bash
|
|
112
|
+
ONESOURCE_API_KEY=<key> npx -y @one-source/mcp@latest
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
After adding the key, reload the MCP server (run `/reload-plugins` in Claude Code, or restart Claude Desktop / Cursor), then call `1s_setup_check`. It should show `Status: Configured (API key)`. You're done — skip to Step 7 to verify a live tool call.
|
|
116
|
+
|
|
117
|
+
---
|
|
118
|
+
|
|
119
|
+
### Option B: x402 Micropayments
|
|
120
|
+
|
|
121
|
+
Pay-per-call using USDC on Base. No account required — just an EVM wallet funded with USDC. The server handles payments transparently. Continue with Steps 3B through 6 below.
|
|
122
|
+
|
|
123
|
+
## Step 3B: Get an EVM Private Key
|
|
74
124
|
|
|
75
125
|
The `X402_PRIVATE_KEY` is an EVM wallet private key — the same kind used by MetaMask, Coinbase Wallet, or Foundry. It is a 64-character hex string. The `0x` prefix is optional — both formats are accepted.
|
|
76
126
|
|
|
@@ -104,7 +154,7 @@ cast wallet new
|
|
|
104
154
|
|
|
105
155
|
**Important:** Use a dedicated wallet for MCP payments — do not use your primary wallet with large holdings. Transfer only what you need.
|
|
106
156
|
|
|
107
|
-
## Step 4: Set the Private Key
|
|
157
|
+
## Step 4: Set the Private Key (x402)
|
|
108
158
|
|
|
109
159
|
### Claude Code
|
|
110
160
|
|
|
@@ -215,27 +265,32 @@ After setting the variable, restart your MCP client and run `1s_setup_check` to
|
|
|
215
265
|
- Use environment variables, a `.env` file (excluded from git), or a secrets manager.
|
|
216
266
|
- Use a dedicated wallet with minimal funds — only what you need for API calls.
|
|
217
267
|
|
|
218
|
-
## Step 5:
|
|
268
|
+
## Step 5: Find Your Wallet Address (x402)
|
|
269
|
+
|
|
270
|
+
After setting the key and reloading the MCP server:
|
|
271
|
+
|
|
272
|
+
1. Call `1s_setup_check` — it shows the wallet address derived from your key under "Wallet address". This is the address you need to fund.
|
|
273
|
+
2. Alternatively, import the key into MetaMask to see the address.
|
|
274
|
+
|
|
275
|
+
## Step 6: Fund the Wallet with USDC on Base (x402)
|
|
219
276
|
|
|
220
277
|
The wallet must hold **USDC on the Base network** (not Ethereum mainnet, not other tokens).
|
|
221
278
|
|
|
222
|
-
1.
|
|
223
|
-
2.
|
|
224
|
-
3. A few dollars ($1–5 USDC) is enough for hundreds of API calls.
|
|
279
|
+
1. Send USDC to the wallet address from Step 5 **on the Base network**.
|
|
280
|
+
2. A few dollars ($1–5 USDC) is enough for hundreds of API calls.
|
|
225
281
|
|
|
226
|
-
If
|
|
282
|
+
If your USDC is on Ethereum mainnet, bridge it to Base using the [Base Bridge](https://bridge.base.org) or any cross-chain bridge that supports Base.
|
|
227
283
|
|
|
228
|
-
## Step
|
|
284
|
+
## Step 7: Verify
|
|
229
285
|
|
|
230
|
-
After setting
|
|
286
|
+
After setting your auth (either option) and reloading:
|
|
231
287
|
|
|
232
|
-
1. **
|
|
233
|
-
2. **
|
|
234
|
-
|
|
235
|
-
- **
|
|
236
|
-
- **Wallet address:** Your wallet address
|
|
288
|
+
1. **Check MCP connection** — Run `/mcp` to confirm the `onesource` server is connected.
|
|
289
|
+
2. **Run `1s_setup_check`** — You should see:
|
|
290
|
+
- **Authentication:** `Configured (API key)` or `Configured (x402)` — not "Not configured"
|
|
291
|
+
- **Wallet address:** Your wallet address (x402 only)
|
|
237
292
|
- **API backend:** Reachable
|
|
238
|
-
|
|
293
|
+
3. **Test a live tool** — Call `1s_network_info` for ethereum. If it returns a block number and gas price, auth is working end-to-end.
|
|
239
294
|
|
|
240
295
|
> **Tip:** If you edited the config file manually (instead of using `claude mcp add`), you must run `/reload-plugins` for changes to take effect. Restarting Claude Code also works.
|
|
241
296
|
|
|
@@ -244,9 +299,10 @@ After setting the key, reload and verify:
|
|
|
244
299
|
| Problem | Solution |
|
|
245
300
|
|---------|----------|
|
|
246
301
|
| `1s_setup_check` shows "Not configured" | Most common cause: config was changed but the MCP server wasn't reloaded. Run `/reload-plugins` in Claude Code, or restart Claude Desktop / Cursor. If the key still isn't reaching the server, try setting it as an environment variable directly — see **Alternative: Set the Key as an Environment Variable** above. |
|
|
302
|
+
| `1s_setup_check` shows API key configured but tools return 402 | The key may be invalid or the account may not have a developer plan. Verify the key at app.onesource.io. |
|
|
247
303
|
| "MCP server onesource already exists" error | Run `claude mcp remove onesource` first, then re-add it with your updated config. |
|
|
248
304
|
| Config changed but nothing happened | Run `/reload-plugins` in Claude Code to reload MCP servers, then `/mcp` to check connection status. |
|
|
249
|
-
| Tool returns HTTP 402 error | x402 is not configured, or the wallet has insufficient USDC on Base. |
|
|
305
|
+
| Tool returns HTTP 402 error (x402 path) | x402 is not configured, or the wallet has insufficient USDC on Base. Check `1s_setup_check` for wallet address and balance. |
|
|
250
306
|
| "x402 setup failed" in server logs | The private key format is wrong. It must be a 64-character hex string (with or without `0x` prefix). |
|
|
251
307
|
| Key is set but wallet shows 0 USDC | Make sure USDC is on the **Base** network, not Ethereum mainnet or another chain. |
|
|
252
308
|
| Tools work but results seem stale | Check `1s_setup_check` for version — you may need to update to the latest. |
|