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

@ariari-mcp/mcp

v0.0.3

Published

Model Context Protocol server for the ariari developer platform — query balances, pricing, and currencies via Claude.

Readme

ariari MCP server

A Model Context Protocol server that lets Claude query the ariari developer platform on your behalf. Check balances, look up live pricing, list available API operations, and generate runnable code samples in curl / TypeScript / C# / Kotlin / Python — all from inside a Claude conversation.

What it does

Nine tools wired to the ariari APIM gateway. All except configure_api_key and clear_api_key are read-only.

| Tool | Purpose | | --- | --- | | get_instructions | First-time onboarding guide | | configure_api_key | Validate and store your APIM subscription key in your OS keychain | | check_auth_status | Confirm the configured key resolves a valid subscription with Balances product access (never deletes the key) | | clear_api_key | Remove the stored key — use when rotating a leaked key or signing off a shared workstation | | get_reference_rate | BCCR reference rate (CRC per USD) — BID, ASK, mid, spread | | get_market_rates | Current CRC↔USD rates from each tracked Costa Rican institution | | get_balances | Wallet balances for the authenticated partner | | get_code_sample | Runnable curl/TS/C#/Kotlin/Python snippet for any documented operation | | list_operations | Browse the documented API surface |

All tools are read-only in this release. Order placement, transfer creation, and other write operations are deliberately scoped out of the v1 MVP.

Requirements

Install

Partners participating in the Phase 0 preview: see docs/partner-install.md for the canonical step-by-step (signed-tarball flow, MCP host config snippets for Claude Desktop and Claude Code, troubleshooting matrix). Public-npm install lands at v1.0.

Install (internal — link-local from source)

# From a checkout of the source repo:
cd app/ari-mcp
npm install
npm run build

# Then in your MCP host's config (e.g. ~/.claude.json):
{
  "mcpServers": {
    "ariari": {
      "command": "node",
      "args": ["/absolute/path/to/app/ari-mcp/dist/server.js"]
    }
  }
}

Authentication

The plugin stores your APIM subscription key in your OS keychain (Keychain on macOS, Credential Manager on Windows, Secret Service on Linux). The first time you use any authenticated tool, run configure_api_key and the plugin will validate the key against the platform before persisting. Invalid keys are rejected without overwriting any existing credential.

If the keychain is unavailable (headless containers, missing libsecret), the plugin falls back to a mode-0600 file at the OS-conventional config directory and warns to stderr at startup.

Privacy & data flow

Tool invocations make HTTPS requests to https://developers.ariari.com and to the ariari APIM gateway. No telemetry is sent to the plugin author. A correlation id (UUIDv4) accompanies every request and is included in any error result so support can trace a failed call.

License

UNLICENSED — internal preview. License will switch to MIT before public-npm release.

Status

This is an early read-only preview. See CHANGELOG.md for release history once 0.1 ships.