
Company News
Jerod Santo Joins Socket as Head of Media
Allow myself to introduce... myself.
@verusidx/send-mcp
Advanced tools
MCP server for Verus currency operations — send, convert, cross-chain transfer, check balances and conversion paths
MCP server for sending, converting, and transferring currency on Verus. Covers simple sends, currency conversions through fractional baskets, cross-chain transfers, currency/ID exports, balance queries, and transaction history.
Prerequisite: @verusidx/chain-mcp must be configured and refresh_chains called at least once so the chain registry exists.
Add to your MCP client config (e.g., Claude Code claude_desktop_config.json):
{
"mcpServers": {
"verusidx-send": {
"command": "npx",
"args": ["-y", "@verusidx/send-mcp"],
"env": {}
}
}
}
Alternative: local install. If you prefer a pinned version or offline use, install into a project directory with npm install @verusidx/send-mcp (or pnpm add / yarn add) and point your config at the local path instead of using npx.
| Variable | Default | Description |
|---|---|---|
VERUSIDX_READ_ONLY | false | Set to true to disable write tools. All read tools remain available. |
VERUSIDX_AUDIT_LOG | true | Set to false to disable audit logging of write operations. |
VERUSIDX_AUDIT_DIR | OS default | Custom directory for audit log files. |
Set VERUSIDX_READ_ONLY=true to disable write tools. In read-only mode, 7 tools remain available:
getcurrencybalance, getcurrencyconverters, estimateconversion, listcurrencies, z_getoperationstatus, gettransaction, listtransactions)The write tool (sendcurrency) is not registered and won't appear in the tool list.
You can set read-only mode independently per MCP server. For example, keep send-mcp read-write while running identity-mcp in read-only mode.
| Tool | Description |
|---|---|
getcurrencybalance | Get multi-currency balances for an address (transparent, z-address, VerusID, wildcards) |
getcurrencyconverters | Find fractional baskets that can convert between specified currencies |
estimateconversion | Estimate conversion output with fees and slippage (read-only preview) |
listcurrencies | List and search currencies with filters (launch state, system type, reserves) |
z_getoperationstatus | Check the status of async operations (companion to sendcurrency) |
gettransaction | Get detailed info about a wallet transaction by txid |
listtransactions | List recent wallet transactions with pagination |
| Tool | Description |
|---|---|
sendcurrency | Send, convert, or cross-chain transfer currency — returns an opid to poll |
sendcurrency is asynchronous. It returns an operation ID, not a transaction ID:
sendcurrency — returns an opid (e.g., "opid-f4422247-...")z_getoperationstatus with the opidstatus is "success", result.txid contains the transaction IDgettransaction with the txid for full detailsOn first run, send-mcp creates a default spending-limits.json if one doesn't exist:
{
"VRSC": 10
}
This caps any single sendcurrency call at 10 VRSC. Edit the file to adjust limits — add entries for any currency (e.g., { "VRSC": 100, "Bridge.vETH": 0.5 }). Currency names are case-insensitive. To remove all limits, set the file contents to {} (empty object).
File location:
~/Library/Application Support/verusidx-mcp/spending-limits.json~/.config/verusidx-mcp/spending-limits.json%APPDATA%\verusidx-mcp\spending-limits.jsonVERUSIDX_SPENDING_LIMITS_PATH environment variableAll write operations are logged to date-stamped JSONL files in the audit directory. Each entry records the tool name, chain, parameters (with sensitive fields summarized), result, and success status. Logs are append-only with 0600 permissions.
@verusidx/chain-mcp installed and refresh_chains called (chain registry must exist)FAQs
MCP server for Verus currency — send, convert, cross-chain transfer, balance/path/tx queries
The npm package @verusidx/send-mcp receives a total of 37 weekly downloads. As such, @verusidx/send-mcp popularity was classified as not popular.
We found that @verusidx/send-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Company News
Allow myself to introduce... myself.

Research
/Security News
A Twitch browser extension on Chrome and Firefox forwards users’ live OAuth session tokens through proxies controlled by a Russian bot service.

Security News
Anthropic found biased reasoning and recklessness drove Claude Mythos 5 to publish malware on PyPI and compromise a security vendor.