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

@verbwire/verbwire-mcp-server

v0.1.1

Published

Model Context Protocol server for Verbwire API

Downloads

12

Readme

Verbwire MCP Server

An MCP server implementation that provides tools for interacting with the Verbwire API, allowing for blockchain operations like deploying smart contracts, minting NFTs, and managing IPFS storage.

Features

  • Data Operations: Query NFT ownership, collections, and transaction details
  • Smart Contract Deployment: Deploy and manage different types of NFT contracts
  • NFT Minting: Create NFTs from files, metadata, or URLs with various options
  • IPFS Storage: Upload files and metadata to IPFS with reliable storage
  • Cross-Chain Operations: Send NFTs across multiple blockchains
  • Contract Management: Update contract settings, add allowlists, manage payments
  • Utility Functions: Access blockchain data, gas prices, and verification services

Tools

The server provides over 50 tools across multiple categories:

  • Data Tools
    • Get NFTs owned/created by a wallet
    • Get transaction details
    • Check token ownership
    • Get collection information
  • Deploy Tools
    • Deploy various NFT contract types
    • Configure deployment parameters
  • Mint Tools
    • Quick mint from files and metadata
    • Mint to specific contracts
    • Create and mint tokens
  • Storage Tools
    • Upload files to IPFS
    • Create and store NFT metadata
    • Upload entire directories
  • Update Tools
    • Transfer tokens between wallets
    • Modify NFT metadata
    • Manage contract settings
    • Handle allowlists and payouts
  • Utility Tools
    • Get chain information
    • Verify smart contracts
    • Estimate transaction costs

Configuration

Getting an API Key

  1. Sign up for a Verbwire account at verbwire.com
  2. Obtain your API key from the dashboard

Usage with Claude Desktop

Add this to your claude_desktop_config.json:

NPX Method

{
  "mcpServers": {
    "verbwire": {
      "command": "npx",
      "args": [
        "-y",
        "@verbwire/verbwire-mcp-server"
      ],
      "env": {
        "VERBWIRE_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}

Local Installation

If you've cloned this repository:

{
  "mcpServers": {
    "verbwire": {
      "command": "node",
      "args": [
        "/path/to/verbwire-mcp-server/server.js"
      ],
      "env": {
        "VERBWIRE_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}

Local Development

If you want to develop or modify this MCP server:

  1. Clone this repository
  2. Install dependencies
npm install
  1. Create a .env file in the root directory:
VERBWIRE_API_KEY=your_api_key_here
  1. Start the server:
npm start

Example Tool Usage

Deploying an NFT Contract

{
  "name": "deployContract",
  "arguments": {
    "chain": "mumbai",
    "contractType": "nft721",
    "contractName": "My Collection",
    "contractSymbol": "MC",
    "recipientAddress": "0x..."
  }
}

Minting an NFT from a File

{
  "name": "quickMintFromFile",
  "arguments": {
    "chain": "mumbai",
    "filePath": "/path/to/image.jpg",
    "name": "My NFT",
    "description": "A unique digital asset"
  }
}

Uploading to IPFS

{
  "name": "uploadFileToIPFS",
  "arguments": {
    "filePath": "/path/to/file.png",
    "name": "My Artwork",
    "description": "A beautiful digital artwork"
  }
}

License

MIT