MCP Catalogs
Home

everything vs verbwire-mcp-server

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
verbwire-mcp-server
by verbwire
Stars★ 85,748★ 2
30d uses
Score7732
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsblockchainCloud Storage
LanguageTypeScriptJavaScript
Last committhis month14 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

verbwire-mcp-server · Summary

A production-ready MCP server for blockchain operations through Verbwire API, supporting smart contracts, NFT minting, and IPFS storage.

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

verbwire-mcp-server · Use cases

  • Developers deploying and managing NFT contracts across multiple blockchains
  • Digital artists minting and distributing NFTs with IPFS integration
  • Blockchain projects needing to manage token ownership, collections, and transactions

everything · Install

NPX (recommended)

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

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

verbwire-mcp-server · Install

Installation

  1. Get a Verbwire API key by signing up at [verbwire.com](https://www.verbwire.com/)
  1. Configure with Claude Desktop by adding this to claude_desktop_config.json:
{
  "mcpServers": {
    "verbwire": {
      "command": "npx",
      "args": [
        "-y",
        "@verbwire/verbwire-mcp-server"
      ],
      "env": {
        "VERBWIRE_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}

Alternatively, you can clone the repository and run locally:

git clone https://github.com/verbwire/verbwire-mcp-server.git
cd verbwire-mcp-server
npm install
npm start
Comparison generated from public README + GitHub signals. Last updated automatically.