@x402scan/mcp 0.1.2 → 0.2.0

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 CHANGED
@@ -4,6 +4,12 @@ MCP server for calling [x402](https://x402.org)-protected APIs with automatic pa
4
4
 
5
5
  ## Install
6
6
 
7
+ ### Recommended (Guided Install)
8
+
9
+ ```bash
10
+ npx @x402scan/mcp install
11
+ ```
12
+
7
13
  ### Claude Code
8
14
 
9
15
  ```bash
@@ -107,16 +113,16 @@ Base, Base Sepolia, Ethereum, Optimism, Arbitrum, Polygon (via CAIP-2)
107
113
  ## Develop
108
114
 
109
115
  ```bash
110
- bun install
111
-
112
- # Add local server to Claude Code
113
- claude mcp add x402scan-dev -- bun run /path/to/x402scan-mcp/src/index.ts
116
+ pnpm install
114
117
 
115
118
  # Build
116
- bun run build
119
+ pnpm -w dev:mcp
120
+
121
+ # In a separate terminal with cwd packages/external/mcp
122
+ pnpm dev install --dev
117
123
 
118
124
  # Build .mcpb for Claude Desktop
119
- bun run build:mcpb
125
+ pnpm build:mcpb
120
126
  ```
121
127
 
122
128
  ## Publishing
@@ -146,6 +152,7 @@ For pre-release versions, use the `beta` branch with prerelease mode:
146
152
  4. Versions will be published as `x.x.x-beta.x`
147
153
 
148
154
  To exit prerelease mode and promote to stable:
155
+
149
156
  ```bash
150
157
  pnpm changeset pre exit
151
158
  ```