pumpclaw-mcp 1.0.0 → 1.0.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.
- package/package.json +2 -1
- package/server.json +36 -0
package/package.json
CHANGED
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 for AI agents on Base. Deploy ERC-20 tokens with Uniswap V4 liquidity, 80% creator fees, and LP locked forever. Browse tokens, check stats, and launch via MCP tools.",
|
|
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
|
+
}
|