@clawnch/clawncher-mcp 0.1.4 → 0.1.5

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 +12 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -21,6 +21,7 @@ export CLAWNCHER_NETWORK=mainnet # or "sepolia" (default: mainnet)
21
21
  export CLAWNCHER_RPC_URL=https://... # custom RPC (default: public Base RPC)
22
22
  export CLAWNCHER_API_URL=https://clawn.ch # API base URL
23
23
  export CLAWNCHER_API_KEY=... # for verified agent deploys
24
+ export UNISWAP_API_KEY=... # for Uniswap Trading API swaps (hub.uniswap.org)
24
25
  ```
25
26
 
26
27
  ## Usage with Claude Desktop
@@ -76,6 +77,17 @@ Or with npx (no global install):
76
77
  | `clawncher_agent_status` | Check verified agent status | Yes + API Key |
77
78
  | `clawncher_wallet_balance` | ETH and token balances | No |
78
79
  | `clawncher_skill` | Retrieve Clawncher SDK quick-start docs | No |
80
+ | **Uniswap V4 / Permit2** | | |
81
+ | `clawncher_price` | On-chain token price from V4 pool | No |
82
+ | `clawncher_uniswap_quote` | V4 on-chain swap simulation with price impact | No |
83
+ | `clawncher_uniswap_swap` | Execute swap via Uniswap Trading API | Yes + Uniswap Key |
84
+ | `clawncher_liquidity_positions` | List V3 LP positions for a wallet | No |
85
+ | `clawncher_v4_pool` | Read V4 pool state (price, tick, liquidity) | No |
86
+ | `clawncher_v4_position` | Read V4 position details | No |
87
+ | `clawncher_v4_mint` | Mint a new V4 LP position | Yes |
88
+ | `clawncher_permit2_status` | Check Permit2 allowance state for a token | No |
89
+ | `clawncher_permit2_approve` | Set up Permit2 approval flow (ERC20 + Permit2) | Yes |
90
+ | `clawncher_permit2_revoke` | Emergency lockdown — revoke all Permit2 access | Yes |
79
91
 
80
92
  ## Links
81
93
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clawnch/clawncher-mcp",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "MCP server for Clawncher - deploy tokens, trade, manage liquidity on Base via AI agents",
5
5
  "type": "module",
6
6
  "bin": {
@@ -35,7 +35,7 @@
35
35
  "node": ">=18"
36
36
  },
37
37
  "dependencies": {
38
- "@clawnch/clawncher-sdk": "^0.1.3",
38
+ "@clawnch/clawncher-sdk": "^0.3.0",
39
39
  "@modelcontextprotocol/sdk": "^1.26.0",
40
40
  "viem": "^2.21.0",
41
41
  "zod": "^3.25.0"