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

@furlpay/mcp-server

v0.1.1

Published

Model Context Protocol server exposing Furlpay tools to AI coding assistants

Downloads

262

Readme

@furlpay/mcp-server

Model Context Protocol server exposing Furlpay tools to AI assistants — let Claude, Cursor, and any MCP client check balances, quote swaps, place orders, and run compliance checks against your Furlpay account.

npm

Self-contained: stdio transport, JSON-RPC 2.0, zero dependencies, no SDK required.

Setup

Claude Desktop / Claude Code

Add to claude_desktop_config.json (or .mcp.json in a Claude Code project):

{
  "mcpServers": {
    "furlpay": {
      "command": "npx",
      "args": ["-y", "@furlpay/mcp-server"],
      "env": {
        "FURLPAY_API_KEY": "sk_sandbox_...",
        "FURLPAY_BASE_URL": "https://api.furlpay.app"
      }
    }
  }
}

Cursor

Settings → MCP → Add server, command: npx -y @furlpay/mcp-server.

Tools

| Tool | What it does | | --- | --- | | get_wallet_balances | Safe smart-account stablecoin balances and active modules | | quote_swap | Cheapest cross-chain stablecoin swap route (Li.Fi / 1inch) | | place_investment_order | Fractional stock/ETF order (Alpaca) — symbol, side, notional | | screen_wallet_risk | AML-screen a wallet address (Chainalysis / TRM), returns a risk verdict | | verify_identity | KYC identity check (Persona / Sumsub) |

Try it

Ask your assistant:

"What's my Furlpay wallet balance?"

"Quote swapping 100 USDT on Base to USDC."

"Screen wallet 9x… for AML risk before I pay it."

Safety

  • Use a sandbox key (sk_sandbox_...) while experimenting — the agent inherits every permission the key has.
  • For real funds, pair with bounded allowances (Account Kit escrow) and spend caps — never hand an agent an unlimited key.
  • FURLPAY_BASE_URL defaults to http://localhost:3000 for local development; point it at production explicitly.

Related

furlpay-examples/ai-agent-mcp — full agent setup walkthrough · furlpay-x402 — per-request agent payments over HTTP 402.

Security

Report vulnerabilities to [email protected] — please don't open public issues.

License

MIT