npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@cryptoapis-io/mcp-signer

v0.3.0

Published

MCP server for local transaction signing on EVM, UTXO, Tron, and XRP — no API calls needed

Downloads

810

Readme

@cryptoapis-io/mcp-signer

MCP server for local transaction signing across EVM, UTXO, Tron, and XRP blockchains. No Crypto APIs HTTP calls — signing happens entirely on your machine. No API key required.

Security

  • Stdio only — no HTTP transport. The server does not listen on any port.
  • Private keys in tool input — each tool receives privateKey / privateKeys / secret as parameters. Keys are never read from environment variables.
  • No network calls — all signing is done locally using cryptographic libraries.

Installation

npm install @cryptoapis-io/mcp-signer

Or install all Crypto APIs MCP servers: npm install @cryptoapis-io/mcp

Usage

npx @cryptoapis-io/mcp-signer

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows):

{
  "mcpServers": {
    "cryptoapis-signer": {
      "command": "npx",
      "args": ["-y", "@cryptoapis-io/mcp-signer"]
    }
  }
}

Cursor

Add to .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):

{
  "mcpServers": {
    "cryptoapis-signer": {
      "command": "npx",
      "args": ["-y", "@cryptoapis-io/mcp-signer"]
    }
  }
}

MCP Inspector

npx @modelcontextprotocol/inspector npx @cryptoapis-io/mcp-signer

Available Tools

evm_sign

Sign an EVM transaction (Ethereum, Ethereum Classic, BSC, Polygon, Avalanche (C-Chain), Arbitrum, Base, Optimism, Tron).

| Action | Description | |--------|-------------| | sign-from-details | Sign from structured transaction fields (to, value, gasLimit, etc.) | | sign-unsigned-hex | Sign a pre-built unsigned transaction hex |

utxo_sign

Sign a UTXO transaction (Bitcoin, Bitcoin Cash, Litecoin, Dogecoin, Dash, Zcash).

| Action | Description | |--------|-------------| | sign-from-details | Sign from a prepared transaction object (inputs, outputs) | | sign-unsigned-hex | Sign a raw unsigned transaction hex with input descriptors |

tron_sign

Sign a Tron transaction using secp256k1 (no TronWeb dependency).

| Action | Description | |--------|-------------| | sign-from-details | Sign from a transaction object with raw_data_hex | | sign-unsigned-hex | Sign a pre-built unsigned transaction hex |

xrp_sign

Sign an XRP transaction.

| Action | Description | |--------|-------------| | sign-from-details | Sign from structured XRP transaction fields | | sign-unsigned-hex | Sign a pre-built unsigned transaction hex |

All tools return signedTransactionHex — ready to broadcast with @cryptoapis-io/mcp-broadcast.

Dependencies

| Package | Purpose | |---------|---------| | ethers | EVM transaction signing | | bitcoinjs-lib + ecpair + tiny-secp256k1 | UTXO transaction signing | | elliptic | Tron transaction signing (secp256k1) | | xrpl | XRP transaction signing |

License

MIT