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

remote-signer-mcp

v0.0.3

Published

MCP server for remote-signer service. Run with: npx remote-signer-mcp

Downloads

303

Readme

remote-signer-mcp

MCP (Model Context Protocol) server for the remote-signer service. Uses remote-signer-client from npm.

Run with npx (no install)

npx -y remote-signer-mcp

Environment variables

Sensitive values can be set by path (recommended) or by raw value.

| Variable | Required | Description | |----------|----------|-------------| | REMOTE_SIGNER_URL | No | Base URL (default: http://localhost:8548) | | REMOTE_SIGNER_API_KEY_ID | Yes | API key ID (e.g. admin) | | REMOTE_SIGNER_PRIVATE_KEY | One of | Ed25519 private key in hex | | REMOTE_SIGNER_PRIVATE_KEY_FILE | One of | Path to PEM file (e.g. data/admin_private.pem) |

TLS / mTLS (optional, for HTTPS backends):

| Variable | Description | |----------|-------------| | REMOTE_SIGNER_CA_FILE | Path to CA certificate (PEM) for server verification | | REMOTE_SIGNER_CLIENT_CERT_FILE | Path to client certificate (PEM) for mTLS | | REMOTE_SIGNER_CLIENT_KEY_FILE | Path to client private key (PEM) for mTLS | | REMOTE_SIGNER_TLS_INSECURE_SKIP_VERIFY | Set to 1 or true to skip server cert verification (insecure, testing only) |

Cursor / MCP config

Path-based (recommended): no secrets in config, only paths.

{
  "mcpServers": {
    "remote-signer": {
      "command": "npx",
      "args": ["-y", "remote-signer-mcp"],
      "env": {
        "REMOTE_SIGNER_URL": "https://your-server.example.com",
        "REMOTE_SIGNER_API_KEY_ID": "admin",
        "REMOTE_SIGNER_PRIVATE_KEY_FILE": "/abs/path/to/data/admin_private.pem",
        "REMOTE_SIGNER_CA_FILE": "/path/to/ca.pem",
        "REMOTE_SIGNER_CLIENT_CERT_FILE": "/path/to/client.pem",
        "REMOTE_SIGNER_CLIENT_KEY_FILE": "/path/to/client-key.pem"
      }
    }
  }
}

Local HTTP (no TLS):

{
  "mcpServers": {
    "remote-signer": {
      "command": "npx",
      "args": ["-y", "remote-signer-mcp"],
      "env": {
        "REMOTE_SIGNER_URL": "http://localhost:8548",
        "REMOTE_SIGNER_API_KEY_ID": "admin",
        "REMOTE_SIGNER_PRIVATE_KEY_FILE": "projects/personal/ivanzzeth/remote-signer/data/admin_private.pem"
      }
    }
  }
}

Paths in env are resolved from the process working directory (often the workspace root when Cursor starts the MCP server).

Install and run locally

npm install
npm run build
REMOTE_SIGNER_API_KEY_ID=admin REMOTE_SIGNER_PRIVATE_KEY_FILE=./data/admin_private.pem node build/index.js

Local development / test without publishing

When testing HTTPS or TLS fixes before publishing:

  1. Use the local client in the MCP: from pkg/mcp-server run npm install file:../js-client, then npm run build.
  2. Verify HTTPS client: from the agents repo root, with the same env as in .cursor/mcp.json (including REMOTE_SIGNER_URL=https://... and cert paths), run:
    node projects/personal/ivanzzeth/remote-signer/pkg/mcp-server/scripts/test-https.mjs
    You should see OK: { "rules": [...] } or a connection error if the backend is down — not "Client sent an HTTP request to an HTTPS server".
  3. Cover all MCP tools: run the full self-test (all 16 tools over HTTPS):
    node projects/personal/ivanzzeth/remote-signer/pkg/mcp-server/scripts/test-all-tools.mjs
    You should see passed: 16, failed: 0.
  4. Run the MCP from the repo: in .cursor/mcp.json point remote-signer at the local build instead of npx, e.g. "command": "node", "args": ["projects/personal/ivanzzeth/remote-signer/pkg/mcp-server/build/index.js"], and keep the same env. Restart Cursor MCP and trigger a tool (e.g. list rules) to confirm.

Publish a new version only after local tests are stable.

License

MIT