by verbwire
Provides tools for interacting with the Verbwire API to perform blockchain operations such as deploying contracts, minting NFTs, and managing IPFS storage.
A collection of over 50 ready‑to‑use tools that wrap the Verbwire API, enabling developers to query NFT data, deploy various NFT contract types, mint tokens, upload files and metadata to IPFS, and manage cross‑chain and contract‑level settings.
{
"mcpServers": {
"verbwire": {
"command": "npx",
"args": ["-y", "@verbwire/verbwire-mcp-server"],
"env": { "VERBWIRE_API_KEY": "YOUR_API_KEY_HERE" }
}
}
}
VERBWIRE_API_KEY
environment variable with a key obtained from the Verbwire dashboard.npm start
if running locally) and invoke tools using the Model Context Protocol format, e.g., { "name": "deployContract", "arguments": { ... } }
.Q: Where do I get the API key? A: Sign up at verbwire.com, then retrieve the key from your dashboard.
Q: Which blockchains are supported? A: All chains covered by the Verbwire API (e.g., Ethereum mainnet, Polygon, Mumbai testnet, Binance Smart Chain, etc.).
Q: Can I run the server locally?
A: Yes. Clone the repository, run npm install
, create a .env
file with VERBWIRE_API_KEY
, then npm start
.
Q: How are tools invoked?
A: Tools are called via MCP JSON payloads specifying the tool name
and arguments
.
Q: Is there a limit on the number of tools I can use? A: The server exposes all the tools provided by Verbwire; usage limits are governed by your Verbwire plan.
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.
The server provides over 50 tools across multiple categories:
Data Tools
Deploy Tools
Mint Tools
Storage Tools
Update Tools
Utility Tools
Add this to your claude_desktop_config.json
:
{
"mcpServers": {
"verbwire": {
"command": "npx",
"args": [
"-y",
"@verbwire/verbwire-mcp-server"
],
"env": {
"VERBWIRE_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
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"
}
}
}
}
If you want to develop or modify this MCP server:
npm install
.env
file in the root directory:VERBWIRE_API_KEY=your_api_key_here
npm start
{
"name": "deployContract",
"arguments": {
"chain": "mumbai",
"contractType": "nft721",
"contractName": "My Collection",
"contractSymbol": "MC",
"recipientAddress": "0x..."
}
}
{
"name": "quickMintFromFile",
"arguments": {
"chain": "mumbai",
"filePath": "/path/to/image.jpg",
"name": "My NFT",
"description": "A unique digital asset"
}
}
{
"name": "uploadFileToIPFS",
"arguments": {
"filePath": "/path/to/file.png",
"name": "My Artwork",
"description": "A beautiful digital artwork"
}
}
MIT
Please log in to share your review and rating for this MCP.
{ "mcpServers": { "verbwire": { "command": "npx", "args": [ "-y", "@verbwire/verbwire-mcp-server" ], "env": { "VERBWIRE_API_KEY": "<YOUR_API_KEY>" } } } }
Explore related MCPs that share similar capabilities and solve comparable challenges
by zed-industries
A high‑performance, multiplayer code editor designed for speed and collaboration.
by modelcontextprotocol
Model Context Protocol Servers
by modelcontextprotocol
A Model Context Protocol server for Git repository interaction and automation.
by modelcontextprotocol
A Model Context Protocol server that provides time and timezone conversion capabilities.
by cline
An autonomous coding assistant that can create and edit files, execute terminal commands, and interact with a browser directly from your IDE, operating step‑by‑step with explicit user permission.
by continuedev
Enables faster shipping of code by integrating continuous AI agents across IDEs, terminals, and CI pipelines, offering chat, edit, autocomplete, and customizable agent workflows.
by upstash
Provides up-to-date, version‑specific library documentation and code examples directly inside LLM prompts, eliminating outdated information and hallucinated APIs.
by github
Connects AI tools directly to GitHub, enabling natural‑language interactions for repository browsing, issue and pull‑request management, CI/CD monitoring, code‑security analysis, and team collaboration.
by daytonaio
Provides a secure, elastic infrastructure that creates isolated sandboxes for running AI‑generated code with sub‑90 ms startup, unlimited persistence, and OCI/Docker compatibility.