npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@catapulta/mcp-server

v0.7.4

Published

Catapulta MCP Server

Readme

Catapulta MCP

Enable AI models to easily connect to Web3 and deploy smart contracts in +20 EVM networks without cryptocurrencies using the Catapulta MCP (Model Context Protocol).

Features

  • Deployment Command Generation: AI-powered generation of deployment commands with support for multiple networks
  • Safe Command Execution: Controlled execution of CLI commands with built-in safety checks
  • Wallet Management: Generate, manage wallets and get gas funding through simple commands
  • Network Support: Extensive network support including:
    • Ethereum networks (mainnet, testnets)
    • Layer 2 solutions (Arbitrum, Optimism, Base)
    • Alternative chains (BSC, Gnosis, Scroll)
  • Advanced Deployment Options:
    • Gas optimization with gas-hawk mode

Installation

# Clone the repository
git clone https://github.com/catapulta-sh/catapulta-mcp.git
cd catapulta-mcp

# Install dependencies
npm install

Usage

Basic Usage

import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';

// Create an MCP server
const server = new McpServer({
    name: 'catapulta-cli-server',
    version: '0.1.0',
});

// Start the server with StdIO transport
const transport = new StdioServerTransport();
server.connect(transport).catch((error) => {
    console.error('[MCP Error]', error);
    process.exit(1);
});

Deployment Command Generation

// Example of generating a deployment command
const command = await server.tool('generate_deploy_command', {
    script_path: 'path/to/script',
    network: 'matic',
    sponsor: true,
    gas_hawk: true
});

Supported Networks

The following networks are supported for deployments:

  • Ethereum: main, goerli, sepolia
  • Layer 2:
    • Arbitrum: arbitrum, arbitrumGoerli, arbitrumSepolia
    • Optimism: optimism, optimismGoerli, optimismSepolia
    • Base: base, baseTestnet, baseSepolia
  • Alternative Chains:
    • BSC: bsc, bscTestnet
    • Gnosis: gnosis, gnosisTestnet
    • Scroll: scroll, scrollSepolia
    • And many more...

Security

The implementation includes several security measures:

  • Whitelist of allowed commands
  • Input validation for all parameters
  • Controlled execution environment
  • Error handling and logging

Development

Prerequisites

  • Node.js (v16 or higher)
  • npm or yarn
  • Catapulta CLI installed

Building

# Build the project
npm run build

# Run tests
npm test

Using it on Cursor

  1. Open Cursor Settings
  2. Go to the MCP tab
  3. Click on Add new global MCP server

Paste the following JSON on the mcp.json

Max Osx, GNU/Linux

{
  "mcpServers": {
    "catapulta": {
      "command": "npx",
      "args": ["-y", "@catapulta/mcp-server@latest"],
      "env": {}
    }
  }
}

Windows 10, Windows 11

{
  "mcpServers": {
    "catapulta": {
      "command": "C:\\Windows\\System32\\cmd.exe",
      "args": [
        "/c",
        "npx",
        "-y",
        "@catapulta/mcp-server@latest"
      ],
      "env": {}
    }
  }
}

Acknowledgments