1. Conduid
  2. Developer Tools
  3. W3Ship/w3ledger-mcp-server
MCP server · Developer Tools

W3Ship/w3ledger-mcp-server

quantum signatures.

Unclaimed MIT last commit 6 months ago devtools
55Fair

Scored 12 hours ago · breakdown

About W3Ship/w3ledger-mcp-server

W3Ship/w3ledger-mcp-server is an MCP server published by baskcart in the Developer Tools category: quantum signatures. It has been installed 1 times through Conduid.

Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx w3ledger-mcp-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about W3Ship/w3ledger-mcp-server

Powered by Claude · Grounded in docs

I know everything about W3Ship/w3ledger-mcp-server. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v1.0.0Gift and Sponsor Cards · 5 Mar 2026Businesses can issue gift cards and sponsor cards using this API.

README

W3Ledger MCP Server

A self-verifying ledger for AI agents — every transaction is cryptographically signed and chain-linked.

W3Ledger (Rolledge) is an MCP (Model Context Protocol) server that gives AI agents the ability to check token balances, create and claim gift cards, create and claim sponsor cards, and process dual-signed purchases — all secured by cryptographic signatures.

Every write operation requires dual signatures (sender + receiver/distribution). The server-side Lambda functions verify all signatures and enforce chain continuity. The MCP server is a thin HTTP client — it cannot bypass security.


⚡ Quick Start

Install via npx (recommended)

No installation required — just configure your AI client:

Claude Desktop (claude_desktop_config.json):

{
  "mcpServers": {
    "w3ledger": {
      "command": "npx",
      "args": ["-y", "w3ledger-mcp-server"]
    }
  }
}

Cursor (.cursor/mcp.json):

{
  "mcpServers": {
    "w3ledger": {
      "command": "npx",
      "args": ["-y", "w3ledger-mcp-server"]
    }
  }
}

VS Code (.vscode/mcp.json):

{
  "servers": {
    "w3ledger": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "w3ledger-mcp-server"]
    }
  }
}

Prerequisites

  • Node.js 18+
  • No external database or cloud credentials required — the server connects to the W3Ledger API

🛠️ Tools (6 total)

🟢 Read (Safe)

Tool Description
check_balance Check DAH, DAHYM, DAHLOR, and W3SH token balances for a public key. Includes loyalty tier (Seed → Joist) with cashback rates.

🟡 Write (Requires Dual Signatures)

Tool Description
create_gift_card Create a gift card by debiting the customer's DAH balance. Requires customer signature + distribution co-signature.
claim_gift_card Claim an ISSUED gift card and credit the claimer's DAH balance.
create_sponsor_card Create a location-based sponsor card with GPS coordinates. Requires dual signatures.
claim_sponsor_card Claim an ISSUED sponsor card near the sponsor's location.
purchase_product Purchase a product by debiting sender and crediting receiver (merchant). Requires sender + receiver dual signatures.

❌ Excluded (Intentionally)

Tool Reason
fund_account Uses server-side distribution keys. Too dangerous for MCP — could credit arbitrary accounts.

🔐 Security Model

W3Ledger implements a self-verifying chain — every transaction is cryptographically linked to the previous one:

┌──────────────────────────────────────────────────────────┐
│  AI Agent (Claude / Cursor / VS Code)                    │
│  "Purchase a VR session for 35 DAH"                      │
└──────────────────┬───────────────────────────────────────┘
                   │ MCP Protocol (stdio)
┌──────────────────▼───────────────────────────────────────┐
│  W3Ledger MCP Server (thin HTTP client)                  │
│  • Forwards tool calls to API Gateway                    │
│  • Does NOT verify signatures (server does)              │
│  • Does NOT access database directly                     │
│  • Equivalent security to curl                           │
└──────────────────┬───────────────────────────────────────┘
                   │ HTTPS
┌──────────────────▼───────────────────────────────────────┐
│  API Gateway → Lambda Functions (server-side)            │
│                                                          │
│  ✅ Validates both signatures (sender + receiver)        │
│  ✅ Verifies chain continuity (prev_balance linkage)     │
│  ✅ Verifies previous transaction's signature            │
│  ✅ Checks balance sufficiency                           │
│  ✅ Enforces timestamp window (5 min)                    │
│  ✅ Atomic DynamoDB transactWrite (all-or-nothing)       │
└──────────────────────────────────────────────────────────┘

Supported Signature Schemes

Scheme Use Case
EVM (secp256k1) Ethereum/MetaMask wallets (personal_sign)
Ed25519 (Curve25519) Solana, Cardano, Stellar, NEAR, Algorand, Aptos, Cosmos, TON wallets
ML-DSA-65 Post-quantum signatures (NIST standard)
SLH-DSA Stateless hash-based post-quantum signatures

⚙️ Configuration

Environment Variables

Variable Required Default Description
ROLLEDGE_API_URL No W3Ledger API Base URL for the Rolledge API Gateway
ROLLEDGE_API_KEY No Optional API key for authenticated access
MCP_LOG_LEVEL No info Logging level: debug, info, warn, error

Verify Installation

List all available tools:

npx w3ledger-mcp-server --list-tools

💡 Example Conversation

You:    "Check my balance"
Claude: [calls check_balance with your public key]
        "Your DAH balance is 1,250.00
         W3SH: 520 (Kindling tier — 10% cashback)
         DAHLOR: 0  |  DAHYM: 0"

You:    "Send a 100 DAH gift card to my friend for coffee"
Claude: [calls create_gift_card — requires your signature]
        "Please sign this transaction with your wallet..."
        [after dual signing]
        "Gift card GC-x8k2 created! Value: 100 DAH
         Your new balance: 1,150.00 DAH"

You:    "Buy a VR session for 35 DAH"
Claude: [calls purchase_product — requires sender + receiver signatures]
        "Transaction confirmed! Order #VR-2026-001
         Spent: 35 DAH  |  New balance: 1,115.00 DAH
         🏅 Cashback: 3.50 W3SH earned (Kindling tier, 10%)"

🏆 W3SH Loyalty Tiers

Purchases automatically earn W3SH cashback based on your tier:

Tier W3SH Required Cashback Rate
🌱 Seed 0 0%
🌿 Twig 100 5%
🔥 Kindling 500 10%
🪵 Log 2,000 15%
🏗️ Joist 10,000 20%

🔗 Links


📄 License

MIT — see LICENSE

README mirrored from the source repository 12 hours ago. The original is authoritative.

Questions

About W3Ship/w3ledger-mcp-server

How do I install W3Ship/w3ledger-mcp-server?

Run npx w3ledger-mcp-server, then add the server to your MCP client's configuration. Conduid has recorded 1 installs, so the command is known to work with current clients.

Is W3Ship/w3ledger-mcp-server safe to use with an AI agent?

Its trust score is 55 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is W3Ship/w3ledger-mcp-server still maintained?

The last commit was 6 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.