pumpclaw-mcp 1.0.0 → 1.0.2

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.
@@ -0,0 +1 @@
1
+ ghu_4qPHrBLLVhjKCjVxNbUwgVRXV5zlt83fF2kd
@@ -0,0 +1 @@
1
+ {"token":"eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJtY3AtcmVnaXN0cnkiLCJleHAiOjE3NzA2ODk2MzcsIm5iZiI6MTc3MDY4OTMzNywiaWF0IjoxNzcwNjg5MzM3LCJhdXRoX21ldGhvZCI6ImdpdGh1Yi1hdCIsImF1dGhfbWV0aG9kX3N1YiI6ImNsYXdkODAwIiwicGVybWlzc2lvbnMiOlt7ImFjdGlvbiI6InB1Ymxpc2giLCJyZXNvdXJjZSI6ImlvLmdpdGh1Yi5jbGF3ZDgwMC8qIn1dfQ.USgfYhhv0CncpoQrIIwdlv4zFDtVNc9zL_xPf3PfQb2CNdorreSwUsMKzl8q3MzRM2sONXh-gHuR4F_T00GBAA","expires_at":1770689637}
package/README.md CHANGED
@@ -4,6 +4,8 @@ MCP (Model Context Protocol) server for [PumpClaw](https://pumpclaw.com) — the
4
4
 
5
5
  Connect any MCP-compatible AI agent (Claude, GPT, OpenClaw, etc.) to deploy and manage tokens on Base blockchain.
6
6
 
7
+ **Traction:** 54+ tokens launched · 39 unique creators · Uniswap V4 on Base · Active trading on DexScreener
8
+
7
9
  ## Features
8
10
 
9
11
  - 🔍 **list_tokens** — Browse all tokens launched on PumpClaw
package/dist/index.js CHANGED
@@ -18,12 +18,12 @@ import { privateKeyToAccount } from "viem/accounts";
18
18
  const BASE_RPC = "https://base-rpc.publicnode.com";
19
19
  const CONTRACTS = {
20
20
  FACTORY: "0xe5bCa0eDe9208f7Ee7FCAFa0415Ca3DC03e16a90",
21
- LP_LOCKER: "0x9047c0944c843d91951a6C91dc9f3944D826ACA8",
21
+ LP_LOCKER: "0x6e4D241957074475741Ff42ec352b8b00217Bf5d",
22
22
  SWAP_ROUTER: "0x3A9c65f4510de85F1843145d637ae895a2Fe04BE",
23
23
  FEE_VIEWER: "0xd25Da746946531F6d8Ba42c4bC0CbF25A39b4b39",
24
24
  };
25
25
  const DEFAULT_SUPPLY = 1000000000n * 10n ** 18n; // 1B tokens
26
- const DEFAULT_FDV = 20n * 10n ** 18n; // 20 ETH
26
+ const DEFAULT_FDV = 2n * 10n ** 18n; // 2 ETH
27
27
  // ─── ABIs (minimal, only what we need) ──────────────────────────────────────
28
28
  const FACTORY_ABI = [
29
29
  {
@@ -311,7 +311,7 @@ server.tool("deploy_token", "Deploy a new token on PumpClaw (Base, Uniswap V4).
311
311
  imageUrl: z.string().optional().describe("Token logo URL (optional)"),
312
312
  websiteUrl: z.string().optional().describe("Project website URL (optional)"),
313
313
  totalSupply: z.string().optional().describe("Total supply in tokens (default: 1000000000)"),
314
- initialFdv: z.string().optional().describe("Initial FDV in ETH (default: 20)"),
314
+ initialFdv: z.string().optional().describe("Initial FDV in ETH (default: 2)"),
315
315
  creator: z.string().optional().describe("Creator address for fee attribution (default: deployer wallet)"),
316
316
  }, async ({ name, symbol, imageUrl, websiteUrl, totalSupply, initialFdv, creator }) => {
317
317
  try {
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "pumpclaw-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
+ "mcpName": "io.github.clawd800/pumpclaw",
4
5
  "description": "MCP server for PumpClaw - free token launcher on Base (Uniswap V4)",
5
6
  "type": "module",
6
7
  "main": "dist/index.js",
package/server.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.clawd800/pumpclaw",
4
+ "description": "Free token launcher on Base. Deploy ERC-20 tokens via Uniswap V4 with 80% creator fees.",
5
+ "repository": {
6
+ "url": "https://github.com/clawd800/pumpclaw",
7
+ "source": "github"
8
+ },
9
+ "version": "1.0.1",
10
+ "packages": [
11
+ {
12
+ "registryType": "npm",
13
+ "identifier": "pumpclaw-mcp",
14
+ "version": "1.0.1",
15
+ "transport": {
16
+ "type": "stdio"
17
+ },
18
+ "environmentVariables": [
19
+ {
20
+ "description": "Private key for the Base wallet used to deploy tokens (only needed for deploy_token tool)",
21
+ "isRequired": false,
22
+ "format": "string",
23
+ "isSecret": true,
24
+ "name": "BASE_PRIVATE_KEY"
25
+ },
26
+ {
27
+ "description": "Base RPC URL (defaults to https://base-rpc.publicnode.com)",
28
+ "isRequired": false,
29
+ "format": "string",
30
+ "isSecret": false,
31
+ "name": "BASE_RPC_URL"
32
+ }
33
+ ]
34
+ }
35
+ ]
36
+ }
package/src/index.ts CHANGED
@@ -29,13 +29,13 @@ const BASE_RPC = "https://base-rpc.publicnode.com";
29
29
 
30
30
  const CONTRACTS = {
31
31
  FACTORY: "0xe5bCa0eDe9208f7Ee7FCAFa0415Ca3DC03e16a90" as Address,
32
- LP_LOCKER: "0x9047c0944c843d91951a6C91dc9f3944D826ACA8" as Address,
32
+ LP_LOCKER: "0x6e4D241957074475741Ff42ec352b8b00217Bf5d" as Address,
33
33
  SWAP_ROUTER: "0x3A9c65f4510de85F1843145d637ae895a2Fe04BE" as Address,
34
34
  FEE_VIEWER: "0xd25Da746946531F6d8Ba42c4bC0CbF25A39b4b39" as Address,
35
35
  };
36
36
 
37
37
  const DEFAULT_SUPPLY = 1_000_000_000n * 10n ** 18n; // 1B tokens
38
- const DEFAULT_FDV = 20n * 10n ** 18n; // 20 ETH
38
+ const DEFAULT_FDV = 2n * 10n ** 18n; // 2 ETH
39
39
 
40
40
  // ─── ABIs (minimal, only what we need) ──────────────────────────────────────
41
41
 
@@ -379,7 +379,7 @@ server.tool(
379
379
  imageUrl: z.string().optional().describe("Token logo URL (optional)"),
380
380
  websiteUrl: z.string().optional().describe("Project website URL (optional)"),
381
381
  totalSupply: z.string().optional().describe("Total supply in tokens (default: 1000000000)"),
382
- initialFdv: z.string().optional().describe("Initial FDV in ETH (default: 20)"),
382
+ initialFdv: z.string().optional().describe("Initial FDV in ETH (default: 2)"),
383
383
  creator: z.string().optional().describe("Creator address for fee attribution (default: deployer wallet)"),
384
384
  },
385
385
  async ({ name, symbol, imageUrl, websiteUrl, totalSupply, initialFdv, creator }) => {