- Home
- MCP servers
- PumpClaw
PumpClaw
- typescript
3
GitHub Stars
typescript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"clawd800-pumpclaw": {
"command": "npx",
"args": [
"pumpclaw-mcp"
]
}
}
}You can run PumpClaw's MCP server to let AI agents and automation tools deploy and manage tokens on Uniswap V4 with zero deployment cost. This MCP server exposes token creation, management commands, and read-only data through configurable, scriptable interfaces so you can integrate PumpClaw into MCP-driven workflows.
How to use
Use the MCP server to interact with PumpClaw through MCP clients or automation. The server is designed to support model-driven actions such as creating new tokens, checking token info, listing your deployments, and querying or claiming fees. You can start the server locally and connect via the standard MCP workflow, or run it through an MCP-enabled agent to deploy and manage tokens without manual steps.
How to install
Prerequisites: you need Node.js and npm installed on your machine. You should also have access to an environment where you can run npx commands.
Install and run the MCP server with the provided command from your MCP setup flow.
Configuration and usage notes
This MCP server supports a standard stdio-based integration method using npm and npx. You can start the MCP server with the command that the integration specifies and pass any necessary arguments for your environment.
Example MCP configuration
{
"mcpServers": {
"pumpclaw_mcp": {
"command": "npx",
"args": ["pumpclaw-mcp"]
}
}
}
Tools and endpoints you can access
Token creation and management are exposed through both the CLI and MCP interfaces. Typical actions you can perform include creating new tokens, listing existing deployments, buying or selling tokens via the integrated flow, and checking or claiming creator fees.
Available tools
createToken
Single function for token creation with configurable name, symbol, image, website, total supply, initial FDV, and creator address.
info
Query information about the PumpClaw factory and deployed tokens from the CLI/MCP interfaces.
buy
Buy tokens using ETH via the integrated V4 swap interface.
sell
Sell tokens for ETH via the integrated swap interface.
list
List all tokens deployed through the MCP-enabled deployment flow.
fees
Check pending creator and protocol fees for a given token.
claim
Claim accumulated fees as creator or admin.
tokens_api
Access read-only token data via REST-like endpoints (e.g., tokens.json, stats.json).