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

@soledgic/mcp

v0.1.1

Published

Public MCP server for Soledgic's wallet-first payment infrastructure API

Readme

@soledgic/mcp

Public MCP (Model Context Protocol) server for Soledgic's wallet-first payment infrastructure API.

This package exposes a safe subset of the public Soledgic integration surface:

  • API status checks
  • user wallet upserts
  • hosted wallet sessions
  • wallet activity reads
  • checkout creation
  • refund requests
  • sandbox checkout and webhook testing

It does not expose Soledgic Control, operator dashboards, privileged server routes, internal repair workflows, tax/compliance operations, or accounting-period tools.

Installation

Requires Node.js 20 or newer.

npm install -g @soledgic/mcp

For local development from this repo:

cd packages/mcp
npm install
npm run build
SOLEDGIC_API_KEY=slk_test_your_key npm start

Environment

| Variable | Required | Default | Description | | --- | --- | --- | --- | | SOLEDGIC_API_KEY | Yes | - | Public Soledgic API key, slk_test_* or slk_live_* | | SOLEDGIC_BASE_URL | No | https://api.soledgic.com/v1 | Public API base URL | | SOLEDGIC_ALLOW_WRITES | No | false | Enables mutating tools | | SOLEDGIC_ALLOWED_TOOLS | No | all | Comma-separated tool allowlist | | SOLEDGIC_ACTOR | No | public-mcp | Actor label written to local audit logs |

Never put live API keys directly in MCP client configuration files. Load them through your shell, secret manager, or local machine keychain.

Safety Model

  • Read-only by default.
  • Writes require SOLEDGIC_ALLOW_WRITES=true.
  • Live writes are blocked in public V1. Use test API keys for MCP write tools.
  • Mutating tools require confirm: true.
  • Money-moving tools require stable idempotency/reference fields.
  • Per-tool rate limits reduce accidental loops.
  • Tool call logs are written to stderr with sensitive values redacted.

Tools

Read-only

| Tool | Description | | --- | --- | | get_api_status | Read Soledgic API health/status | | get_integration_guide | Get docs links and short integration guidance | | get_sdk_example | Get concise TypeScript examples for common flows | | list_wallet_activity | List wallet ledger activity | | list_sandbox_events | List recent sandbox webhook events |

Mutating

| Tool | Description | | --- | --- | | upsert_user_wallet | Create or upsert a consumer-credit wallet | | create_wallet_session | Create a hosted wallet page session | | create_checkout | Create a hosted or direct checkout | | complete_sandbox_checkout | Complete a sandbox checkout without processor calls | | fail_sandbox_checkout | Mark a sandbox checkout as failed | | send_sandbox_webhook_test | Queue a predefined sandbox webhook event | | request_refund | Request a refund through Soledgic |

Codex or Claude Configuration

Use the built binary when installed:

{
  "mcpServers": {
    "soledgic": {
      "command": "soledgic-mcp",
      "env": {
        "SOLEDGIC_API_KEY": "load-this-from-your-secret-manager"
      }
    }
  }
}

For local development from this repo:

{
  "mcpServers": {
    "soledgic": {
      "command": "node",
      "args": ["/Users/osifo/Desktop/soledgic/packages/mcp/dist/index.js"],
      "env": {
        "SOLEDGIC_API_KEY": "load-this-from-your-secret-manager"
      }
    }
  }
}