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

@ramp-kit/mcp

v0.1.5

Published

MCP server for the LATAM Ramp Kit: lets AI agents explore providers, fetch live ramp quotes, create sandbox orders, simulate PIX/SPEI deposits and inspect Stellar wallets — plus built-in documentation tools covering usage, architecture and the path to pro

Readme

@ramp-kit/mcp

MCP (Model Context Protocol) server for the LATAM Ramp Kit: lets AI agents (Claude Code, Claude Desktop, Cursor, or any MCP client) explore, explain and operate LATAM fiat ramps on Stellar.

Works with zero configuration (mock provider) and comes alive with an Etherfuse sandbox key — agents can then fetch real quotes, create sandbox orders, simulate PIX/SPEI deposits and watch them settle on Stellar Testnet.

Listed in the official MCP Registry as io.github.armandocodecr/ramp-kit. Pairs with the kit's agent skill (npx skills add …/skills/ramp-kit): the skill provides integration knowledge, this server provides the hands.

Setup

Claude Code:

claude mcp add ramp-kit -e ETHERFUSE_API_KEY=api_sand_… -- npx -y @ramp-kit/mcp

Any MCP client (mcpServers config):

{
  "mcpServers": {
    "ramp-kit": {
      "command": "npx",
      "args": ["-y", "@ramp-kit/mcp"],
      "env": { "ETHERFUSE_API_KEY": "api_sand_…" }
    }
  }
}

Environment variables (all optional):

| Variable | Effect | | --- | --- | | ETHERFUSE_API_KEY | Enables live Etherfuse tools (sandbox key: sandbox.etherfuse.com) | | MANTECA_API_KEY | Enables the Manteca provider in routing/comparison | | RAMPKIT_ENV | sandbox (default) or production |

Tools

| Tool | What it does | | --- | --- | | get_documentation | Built-in docs: overview, quickstart, sandbox-setup, architecture, production, troubleshooting | | list_providers | Configured providers + capabilities (countries, rails, networks) | | list_assets | Tradable assets (environment-specific identifiers) | | get_quote | Live quote with rate, fees and expiry countdown | | compare_quotes | Same request fanned out to every eligible provider | | create_order | Quote → order, returns PIX/SPEI deposit instructions | | get_order | Normalized order status until settled/failed | | simulate_deposit | Sandbox-only: simulate the incoming fiat payment | | get_wallet_state | Stellar account existence, balances, pending claimable balances |

Safety

  • Never handles secret keys — signing stays in the user's wallet (claimPendingBalances in @ramp-kit/core takes a signing callback).
  • simulate_deposit refuses to run when RAMPKIT_ENV=production.
  • Quotes are session-scoped; orders only execute against the environment the server was configured for.

Example agent session

"Quote 100 BRL to USDC on Stellar and walk me through what happens"

The agent calls list_assetsget_quote → explains the rate/fees/expiry, then optionally create_ordersimulate_depositget_order until settled, and get_wallet_state to show the delivered tokens.

MIT © Armando Cruz · Repository