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.
Files changed (2) hide show
  1. package/package.json +2 -1
  2. package/server.json +36 -0
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "pumpclaw-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
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 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
+ }