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

@solide-finance/solide-network-mcp-server

v0.0.6

Published

MCP server for the Solide Network API — cross-border payments, FX, multi-currency treasury, and wallet management via natural language.

Readme

@solide-finance/solide-network-mcp-server

MCP server for the Solide Network API — cross-border payments, FX, multi-currency treasury, and wallet management via natural language.

Quick Start

npx @solide-finance/solide-network-mcp-server

Configuration

Add to your Claude Desktop config (claude_desktop_config.json):

{
  "mcpServers": {
    "solide": {
      "command": "npx",
      "args": ["@solide-finance/solide-network-mcp-server"],
      "env": {
        "SOLIDE_CLIENT_ID": "your-client-id",
        "SOLIDE_CLIENT_SECRET": "your-client-secret"
      }
    }
  }
}

Or for Claude Code, add to .mcp.json:

{
  "mcpServers": {
    "solide": {
      "command": "npx",
      "args": ["@solide-finance/solide-network-mcp-server"],
      "env": {
        "SOLIDE_CLIENT_ID": "your-client-id",
        "SOLIDE_CLIENT_SECRET": "your-client-secret"
      }
    }
  }
}

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | SOLIDE_CLIENT_ID | Yes | OAuth2 client ID | | SOLIDE_CLIENT_SECRET | Yes | OAuth2 client secret | | SOLIDE_API_BASE_URL | No | API base URL (default: https://api.solide.fi) | | SOLIDE_LOG_LEVEL | No | Logging verbosity: silent, error, info, or debug (default: info) | | SOLIDE_LOG_FORMAT | No | Logging format: pretty or json (default: pretty) |

Logs are written to stderr so the MCP stdio protocol on stdin/stdout stays intact. Use SOLIDE_LOG_LEVEL=debug for verbose tool-call logs and SOLIDE_LOG_FORMAT=json for structured JSON-line logs.

Available Tools

Accounts

  • list_accounts — List all accounts
  • get_account_by_id — Get account by Solide ID
  • get_account_by_external_id — Get account by external ID
  • create_account — Create a new account
  • update_account — Update an account

KYC / KYB

  • get_kyc — Get KYC status
  • set_personal_kyc — Set personal KYC
  • set_corporate_kyc — Set corporate KYC (KYB)
  • set_inhouse_kyc — Set in-house KYC

Balances & Wallets

  • get_digital_balances — Get asset balances
  • list_fiat_wallets — List fiat wallets (bank details)
  • generate_fiat_wallet — Generate a fiat wallet
  • list_digital_wallets — List digital wallets
  • generate_digital_wallet — Generate a digital wallet

Payments

  • payment_inquiry — Find payment routes between currencies
  • execute_payment — Execute a payment
  • list_payments — List payments
  • get_payment_by_id — Get payment details

Settlement Instructions

  • list_settlement_instructions — List payout destinations
  • get_settlement_instructions_by_id — Get settlement instructions
  • create_fiat_settlement_instructions — Create bank payout instructions
  • create_digital_settlement_instructions — Create crypto payout instructions

Assets & Reference Data

  • list_assets — List supported currencies and networks
  • get_currency_metadata — Currency metadata
  • get_network_metadata — Network metadata
  • get_fiat_bank_details_statuses — Bank details statuses
  • get_kyc_types — KYC types

Deposits

  • get_fiat_deposits — Get fiat deposits for a date range

Development

npm install
npm run build
npm start