by verbwire
Provides tools for interacting with the Verbwire API to perform blockchain operations such as deploying smart contracts, minting NFTs, and managing IPFS storage.
Enables developers to call the Verbwire API through a local MCP server, offering a catalog of over 50 ready‑to‑use tools for blockchain data queries, smart‑contract deployment, NFT minting, IPFS uploads, cross‑chain transfers, and contract management.
npx
):
{
"mcpServers": {
"verbwire": {
"command": "npx",
"args": ["-y", "@verbwire/verbwire-mcp-server"],
"env": { "VERBWIRE_API_KEY": "YOUR_API_KEY_HERE" }
}
}
}
npm start
if running locally.deployContract
, quickMintFromFile
, uploadFileToIPFS
).Q: Which blockchains are supported? A: Any chain supported by Verbwire (e.g., Ethereum, Polygon, Binance Smart Chain, Solana, etc.).
Q: Do I need to run the server locally?
A: No; you can invoke the server via the npx
command which installs and runs it on demand.
Q: How are API keys secured?
A: Place the key in the VERBWIRE_API_KEY
environment variable; the server reads it at startup.
Q: Can I add custom tools?
A: Yes, the MCP framework allows you to define additional tools in the tools
directory and expose them via the same JSON interface.
Q: What licensing applies? A: The project is released under the MIT license.
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>" } } } }
Discover more MCP servers with similar functionality and use cases
by zed-industries
Provides real-time collaborative editing powered by Rust, enabling developers to edit code instantly across machines with a responsive, GPU-accelerated UI.
by cline
Provides autonomous coding assistance directly in the IDE, enabling file creation, editing, terminal command execution, browser interactions, and tool extension with user approval at each step.
by continuedev
Provides continuous AI assistance across IDEs, terminals, and CI pipelines, offering agents, chat, inline editing, and autocomplete to accelerate software development.
by github
Enables AI agents, assistants, and chatbots to interact with GitHub via natural‑language commands, providing read‑write access to repositories, issues, pull requests, workflows, security data and team activity.
by block
Automates engineering tasks by installing, executing, editing, and testing code using any large language model, providing end‑to‑end project building, debugging, workflow orchestration, and external API interaction.
by RooCodeInc
An autonomous coding agent that lives inside VS Code, capable of generating, refactoring, debugging code, managing files, running terminal commands, controlling a browser, and adapting its behavior through custom modes and instructions.
by lastmile-ai
A lightweight, composable framework for building AI agents using Model Context Protocol and simple workflow patterns.
by firebase
Provides a command‑line interface to manage, test, and deploy Firebase projects, covering hosting, databases, authentication, cloud functions, extensions, and CI/CD workflows.
by gptme
Empowers large language models to act as personal AI assistants directly inside the terminal, providing capabilities such as code execution, file manipulation, web browsing, vision, and interactive tool usage.