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

w3deploy-mcp

v1.0.0

Published

This MCP server lets agentic IDEs deploy generated code directly to your W3DEPLOY backend, which encrypts and pins artifacts to Pinata/IPFS.

Readme

W3DEPLOY MCP Server

This MCP server lets agentic IDEs deploy generated code directly to your W3DEPLOY backend, which encrypts and pins artifacts to Pinata/IPFS.

Tools

  • connect_w3deploy_mcp
    • Calls backend POST /api/mcp/connect
  • request_deploy_challenge
    • Calls backend POST /api/mcp/challenge
    • Returns challenge message to sign in-wallet
  • deploy_code_to_ipfs
    • Calls backend POST /api/mcp/deploy-code
    • Requires JWT, wallet address, challenge ID and wallet signature
  • get_deployment_history
    • Calls backend GET /api/sites/:domain
    • Returns deployment history with chain tx IDs and explorer URLs

Run (local development)

npm install
npm run build
npm run start

On Windows PowerShell where execution policy blocks npm scripts, run:

npm.cmd install
npm.cmd run build
npm.cmd run start

Global command setup

This package now exposes a CLI command: w3deploy-mcp.

After publishing to npm (or installing from a git source), install globally:

npm i -g w3deploy-mcp

Then any MCP client can use:

{
  "mcpServers": {
    "w3deploy": {
      "command": "w3deploy-mcp",
      "env": {
        "W3DEPLOY_API_BASE": "https://api.yourdomain.com",
        "W3DEPLOY_WALLET_ADDRESS": "YOUR_WALLET_ADDRESS",
        "W3DEPLOY_API_TOKEN": "YOUR_PRODUCTION_JWT"
      }
    }
  }
}

Environment

  • W3DEPLOY_API_BASE (optional, default http://localhost:8080)
  • W3DEPLOY_WALLET_ADDRESS (recommended, current user Algorand wallet address)
  • W3DEPLOY_API_TOKEN (recommended for authenticated MCP calls)
  • W3DEPLOY_EVM_PRIVATE_KEY (optional, enables automatic challenge signing for EVM wallets)

Example MCP client config (portable via npx)

{
  "mcpServers": {
    "w3deploy": {
      "command": "npx",
      "args": ["-y", "w3deploy-mcp@latest"],
      "env": {
        "W3DEPLOY_API_BASE": "https://api.yourdomain.com",
        "W3DEPLOY_WALLET_ADDRESS": "YOUR_WALLET_ADDRESS",
        "W3DEPLOY_API_TOKEN": "YOUR_PRODUCTION_JWT"
      }
    }
  }
}

Example MCP client config (local repository)

{
  "mcpServers": {
    "w3deploy": {
      "command": "npm",
      "args": ["run", "start"],
      "cwd": "d:/project/w3deploy/mcp",
      "env": {
        "W3DEPLOY_API_BASE": "http://localhost:8080",
        "W3DEPLOY_WALLET_ADDRESS": "YOUR_WALLET_ADDRESS"
      }
    }
  }
}

Signing flow

  1. Call request_deploy_challenge with jwtToken and walletAddress.
  2. Sign the returned message with the wallet app (no mnemonic sharing).
  3. Call deploy_code_to_ipfs with:
    • challengeId
    • challengeSignature
    • deploy payload (label, files, etc.)

deploy_code_to_ipfs input example

{
  "jwtToken": "<jwt>",
  "walletAddress": "<wallet>",
  "challengeId": "<challenge id>",
  "challengeSignature": "<wallet signature>",
  "label": "my-agent-site",
  "files": [
    { "path": "index.html", "content": "<h1>Hello</h1>" },
    { "path": "styles.css", "content": "h1 { color: teal; }" }
  ],
  "notes": "Agent deploy",
  "env": "production",
  "projectName": "my-agent-site",
  "appPreset": "static",
  "rootDirectory": ".",
  "installCommand": "npm install --no-fund --no-audit",
  "buildCommand": "npm run build",
  "outputDirectory": "dist",
  "envVars": [
    { "key": "API_BASE", "value": "https://example.com" }
  ]
}

get_deployment_history input example

{
  "jwtToken": "<jwt>",
  "walletAddress": "<wallet>",
  "domain": "my-agent-site",
  "limit": 10
}