pumpclaw-mcp 1.0.1 → 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.
- package/.mcpregistry_github_token +1 -0
- package/.mcpregistry_registry_token +1 -0
- package/README.md +2 -0
- package/dist/index.js +3 -3
- package/package.json +1 -1
- package/server.json +1 -1
- package/src/index.ts +3 -3
|
@@ -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: "
|
|
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 =
|
|
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:
|
|
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
package/server.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
3
|
"name": "io.github.clawd800/pumpclaw",
|
|
4
|
-
"description": "Free token launcher
|
|
4
|
+
"description": "Free token launcher on Base. Deploy ERC-20 tokens via Uniswap V4 with 80% creator fees.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/clawd800/pumpclaw",
|
|
7
7
|
"source": "github"
|
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: "
|
|
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 =
|
|
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:
|
|
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 }) => {
|