The official Model Context Protocol (MCP) server for the MultiversX Blockchain. This server enables AI Agents (Claude, Gemini, etc.) to securely interact with the blockchain and allows products to be indexed by Google Shopping via specific feeds.
- 14 Comprehensive Tools: Cover everything from account queries to batch transfers and token issuance.
- Relayed V3 Support: Native support for gas-sponsored transactions.
- Modular Architecture: Easy to extend or integrate into custom agents.
- Dual Mode: Runs via Stdio (for desktop agents) or HTTP (for web services/Google Shopping feeds).
- UCP Compliant: Implements Universal Commerce Protocol for Agentic Commerce discovery.
git clone https://github.com/multiversx/multiversx-mcp-server.git
cd multiversx-mcp-server
npm install
npm run buildCreate a .env file (see .env.example):
MVX_NETWORK=devnet
MVX_SIGNING_MODE=signed
MVX_WALLET_PEM=./wallets/my-wallet.pem
# OR for multi-shard Relayed V3 support:
MVX_WALLET_DIR=./wallets/Configure Registry Addresses in src/config.json:
{
"registry_config": {
"identity": "erd1...",
"reputation": "erd1...",
"validation": "erd1..."
}
}- MCP Stdio: Add to your MCP client config (e.g.,
claude_desktop_config.json). - HTTP Mode: Run
npm start httpto enable web-native features:- UCP Manifest:
/.well-known/ucp(Standard Discovery) - Google Shopping Feed:
/feed.json - ACP Products:
/.well-known/acp/products.json
- UCP Manifest:
This server is UCP-compliant. To allow AI agents to discover this connector:
- Deploy the server to a public URL (e.g.,
https://agent-payments.example.com). - Ensure it is running in HTTP Mode.
- Point ucp-compatible agents to
https://[your-domain]/.well-known/ucp.
The manifest links UCP capabilities (like dev.ucp.payment.process) directly to our MCP tools.
| Category | Tools |
|---|---|
| Account | get-balance, query-account |
| Transfers | send-egld, send-tokens, send-egld-to-multiple, send-tokens-to-multiple |
| Tokens | issue-fungible-token, issue-nft-collection, issue-sft-collection, create-nft |
| Advanced | create-relayed-v3, track-transaction, search-products |
- Architecture Overview - System design and data flow.
- API Reference - Detailed tool specifications and examples.
- Integration Guide - Setup for Claude Desktop and custom clients.
- RelayedV3 Spec - Technical deep-dive into gas-sponsored transactions.
- E2E Testing Guide - How to run and verify the test suite.
# Run unit tests
npm test
# Run E2E tests (Playwright)
npx playwright test src/__tests__/e2e