Skip to content

Commit 536137b

Browse files
committed
fix(claude): quiet proxy logs and default to MPP protocol
1 parent 0831d85 commit 536137b

3 files changed

Lines changed: 11 additions & 4 deletions

File tree

packages/x402-proxy/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.10.2] - 2026-04-01
11+
12+
### Fixed
13+
- `claude` command proxy logs ("proxy: intercepting ...") no longer corrupt Claude Code's statusline - server now runs in quiet mode
14+
- `claude` command defaults to MPP protocol (correct for inference proxying) instead of requiring `--protocol mpp`
15+
1016
## [0.10.1] - 2026-04-01
1117

1218
### Changed
@@ -335,7 +341,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
335341
- `appendHistory` / `readHistory` / `calcSpend` - JSONL transaction history
336342
- Re-exports from `@x402/fetch`, `@x402/svm`, `@x402/evm`
337343

338-
[Unreleased]: https://github.com/cascade-protocol/x402-proxy/compare/v0.10.1...HEAD
344+
[Unreleased]: https://github.com/cascade-protocol/x402-proxy/compare/v0.10.2...HEAD
345+
[0.10.2]: https://github.com/cascade-protocol/x402-proxy/compare/v0.10.1...v0.10.2
339346
[0.10.1]: https://github.com/cascade-protocol/x402-proxy/compare/v0.10.0...v0.10.1
340347
[0.10.0]: https://github.com/cascade-protocol/x402-proxy/compare/v0.9.4...v0.10.0
341348
[0.9.4]: https://github.com/cascade-protocol/x402-proxy/compare/v0.9.3...v0.9.4

packages/x402-proxy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "x402-proxy",
3-
"version": "0.10.1",
3+
"version": "0.10.2",
44
"description": "curl for x402 paid APIs. Auto-pays any endpoint on Base, Solana, and Tempo. Also works as an OpenClaw plugin.",
55
"type": "module",
66
"sideEffects": false,

packages/x402-proxy/src/commands/claude.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,11 @@ Examples:
8787
const started = await startServeServer({
8888
upstreamUrl: flags.upstream ?? DEFAULT_SURF_UPSTREAM_URL,
8989
port: Number(flags.port),
90-
protocol: flags.protocol,
90+
protocol: flags.protocol ?? "mpp",
9191
network: flags.network,
9292
evmKey: flags.evmKey,
9393
solanaKey: flags.solanaKey,
94-
quiet: false,
94+
quiet: true,
9595
});
9696

9797
const claudeArgs = normalizeClaudeArgs(rawClaudeArgs);

0 commit comments

Comments
 (0)