drio
Open app

pumpfun-mcp

Source

Catalog onlyCatalog onlySTDIO

Overview

Pumpfun MCP is a Model Context Protocol (MCP) server designed for interacting with the Pump.fun platform on Solana, enabling AI assistants to create, buy, and sell tokens.

To use this server, configure your MCP client with the provided settings, clone the repository, install dependencies, set up your environment variables, and run the server.

  • Create, buy, and sell tokens on the Pump.fun platform. - Manage Solana keypairs automatically. - Standalone scripts for token management and account balance checking.
  1. AI assistants can automate token transactions on the Pump.fun platform.
  2. Developers can integrate token management into their applications.
  3. Users can create and manage their own tokens easily.

Add to your AI client

Use these steps to connect pumpfun-mcp in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "pumpfun-mcp-server-noahgsolomon": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-pumpfun-mcp-server-noahgsolomon"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "pumpfun-mcp-server-noahgsolomon": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-pumpfun-mcp-server-noahgsolomon"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "pumpfun-mcp-server-noahgsolomon": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-pumpfun-mcp-server-noahgsolomon"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "pumpfun-mcp-server-noahgsolomon": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-pumpfun-mcp-server-noahgsolomon"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "pumpfun-mcp-server-noahgsolomon": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-pumpfun-mcp-server-noahgsolomon"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "pumpfun-mcp-server-noahgsolomon": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-pumpfun-mcp-server-noahgsolomon"
      ]
    }
  }
}

FAQ

Is Pumpfun MCP free to use?

Yes! Pumpfun MCP is free to use for everyone.

What programming language is used?

The project is developed in TypeScript.

How do I secure my keypairs?

Ensure the `.keys` folder is secured as it contains unencrypted keypairs.

pumpfun-mcp — MCP Registry