Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP server for the 1Money Network Protocol, providing tools to interact with accounts, tokens, transactions, checkpoints, chain, and utility functions like signing and address derivation.

README.md

1Money Network MCP

<img src="./public/logo.png" alt="1Money Logo" width="200"/>

MCP (stdio) server for the 1Money Network Protocol, backed by @1money/protocol-ts-sdk.

What This MCP Server Does

  • Exposes protocol API endpoints (accounts, tokens, transactions, checkpoints, chain) as MCP tools.
  • Includes utility tools for signing, hashing, RLP encoding, and address derivation.
  • Uses the SDK client configuration and respects network/base URL/timeouts.

Configuration

Environment variables:

  • ONEMONEY_PROTOCOL_NETWORK: testnet, mainnet, or local (default: testnet)
  • ONEMONEY_PROTOCOL_BASE_URL: override the network base URL
  • ONEMONEY_PROTOCOL_TIMEOUT_MS: request timeout in ms (default: 10000)
  • ONEMONEY_PROTOCOL_HEADERS: optional JSON string of headers to include in all requests (only needed for custom gateways/proxies)

Example .env file (see .env.example):

export ONEMONEY_PROTOCOL_NETWORK=testnet
export ONEMONEY_PROTOCOL_TIMEOUT_MS=15000

Most users can omit ONEMONEY_PROTOCOL_HEADERS.

Integration

Cursor (one-click install)

After installation, add your configuration to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "1money-network": {
      "command": "npx",
      "args": ["-y", "@1money/network-mcp"],
      "env": {
        "ONEMONEY_PROTOCOL_NETWORK": "testnet"
      }
    }
  }
}

Claude Code

Run the following command in your terminal:

claude mcp add --transport stdio 1money-network --env ONEMONEY_PROTOCOL_NETWORK=testnet -- npx -y @1money/network-mcp

Claude Desktop

Add to your Claude Desktop configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\\Claude\\claude_desktop_config.json

{
  "mcpServers": {
    "1money-network": {
      "command": "npx",
      "args": ["-y", "@1money/network-mcp"],
      "env": {
        "ONEMONEY_PROTOCOL_NETWORK": "testnet"
      }
    }
  }
}

Codex Integration

Add the MCP server to your Codex config file, then restart Codex:

[mcp_servers.1money-network]
command = "npx"
args = ["-y", "@1money/network-mcp"]
env = { ONEMONEY_PROTOCOL_NETWORK = "testnet" }

Example Tool Calls

{
  "tool": "accounts.get_nonce",
  "input": {
    "address": "0x9E1E9688A44D058fF181Ed64ddFAFbBE5CC74ff3"
  }
}
{
  "tool": "transactions.estimate_fee",
  "input": {
    "from": "0x9E1E9688A44D058fF181Ed64ddFAFbBE5CC74ff3",
    "value": "1000000000",
    "token": "0x2cd8999Be299373D7881f4aDD11510030ad1412F"
  }
}
{
  "tool": "utils.sign_message",
  "input": {
    "payload": [
      1212101,
      2,
      "0x0000000000000000000000000000000000000000",
      "1000000000000000000",
      "0x0000000000000000000000000000000000000000"
    ],
    "private_key": "0xYOUR_PRIVATE_KEY"
  }
}

Note: utils.sign_message accepts a private key directly. Avoid using real keys in shared environments.

Example Prompts

  • "Get the current chain id."
  • "Fetch the latest checkpoint number on testnet."
  • "Estimate fee for sending 1000000000 units from 0x... with token 0x...."
  • "Get token metadata for 0x...."
  • "Derive the token account address for wallet 0x... and mint 0x...."

Tools

accounts

  • accounts.get_nonce
  • accounts.get_bbnonce
  • accounts.get_token_account

chain

  • chain.get_chain_id

checkpoints

  • checkpoints.get_number
  • checkpoints.get_by_hash
  • checkpoints.get_by_number
  • checkpoints.get_receipts_by_number

tokens

  • tokens.get_token_metadata
  • tokens.manage_blacklist
  • tokens.manage_whitelist
  • tokens.burn
  • tokens.grant_authority
  • tokens.issue
  • tokens.mint
  • tokens.pause
  • tokens.update_metadata
  • tokens.bridge_and_mint
  • tokens.burn_and_bridge

transactions

  • transactions.get_by_hash
  • transactions.get_receipt_by_hash
  • transactions.get_finalized_by_hash
  • transactions.estimate_fee
  • transactions.payment

utils

  • utils.derive_token_address
  • utils.sign_message
  • utils.encode_payload
  • utils.to_hex
  • utils.calc_tx_hash
  • utils.typeof
  • utils.safe_promise_all
  • utils.safe_promise_line

Batch tools (utils.safe_promise_all and utils.safe_promise_line) accept a calls array of { tool, input } objects. The safe_promise_all variant executes in parallel and fails on the first error. The safe_promise_line variant executes sequentially and ignores errors.

Schema

schemas/tools.json is the JSON Schema source for all tools.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Other servers.