@0xprotovox/deficlaw 0.4.0 → 0.4.1

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 +62 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -51,17 +51,72 @@ npm install && npm run build
51
51
  claude mcp add defi -- node /path/to/deficlaw/dist/index.js
52
52
  ```
53
53
 
54
- Then just ask Claude naturally:
54
+ That's it. No API keys, no config files, no accounts needed.
55
55
 
56
+ ## Quick Start Guide
57
+
58
+ Once installed, open Claude Code and try these commands. Just type naturally:
59
+
60
+ ### Check a token price (fastest, ~300ms)
61
+ ```
62
+ > what's the price of BONK?
63
+ > price of JUP
64
+ > how much is SOL right now?
65
+ ```
66
+
67
+ ### Quick token scan (~350ms, no holder data)
68
+ ```
69
+ > quick analyze So11111...
70
+ > give me a quick look at this token: 3oQw...pump
71
+ ```
72
+
73
+ ### Full deep analysis (~1.5s, with holders + risk + verdict)
74
+ ```
75
+ > analyze token 3oQwNvAfZMuPWjVPC12ukY7RPA9JiGwLod6Pr4Lkpump
76
+ > deep analyze JUP token
77
+ > is this token safe? EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
78
+ ```
79
+
80
+ ### Compact analysis (small response, top 5 holders only)
81
+ ```
82
+ > compact analyze 3oQw...pump
83
+ > give me a brief analysis of BONK
56
84
  ```
57
- > "analyze this token: 3oQw...pump"
58
- > "what's the price of BONK?"
59
- > "search for BONK token"
60
- > "show me new launches on solana in the last 30 minutes"
61
- > "show me trending tokens on solana"
62
- > "who made money on JUP token?"
85
+
86
+ ### Search tokens by name
87
+ ```
88
+ > search for BONK
89
+ > find tokens named "dog"
90
+ > search Jupiter token
91
+ ```
92
+
93
+ ### Trending tokens
94
+ ```
95
+ > what's trending on solana?
96
+ > show me trending tokens on ethereum
97
+ > top tokens on base right now
98
+ ```
99
+
100
+ ### New launches
101
+ ```
102
+ > show new launches on solana in the last 30 minutes
103
+ > any new tokens launched in the last hour?
104
+ ```
105
+
106
+ ### Who made money?
107
+ ```
108
+ > who profited on this token: 3oQw...pump?
109
+ > show me top traders on JUP
110
+ > who lost money on BONK?
63
111
  ```
64
112
 
113
+ ### Pro tips
114
+ - Use **quick mode** for fast scans when you just need price + risk
115
+ - Use **compact mode** when you want holder data but don't need the full 20-holder table
116
+ - **Paste any Solana token address** and ask "is this safe?" for instant security + risk check
117
+ - Chain commands: "analyze this token and tell me if I should buy it"
118
+ - Works with **any chain** for prices: solana, ethereum, base, bsc, arbitrum
119
+
65
120
  ## Tools
66
121
 
67
122
  ### `analyze_token`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@0xprotovox/deficlaw",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "DeFi MCP Server for Claude Code — token analysis, prices, trending, holder intelligence",
5
5
  "author": "0xprotovox",
6
6
  "license": "MIT",