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

@xlmtools/mcp

v0.1.5

Published

XLMTools MCP server — stdio Model Context Protocol server exposing 18 Stellar-native and web tools with USDC micropayments via MPP.

Downloads

74

Readme

@xlmtools/mcp

XLMTools MCP server — a thin stdio wrapper that gives any MCP-capable agent host access to 21 Stellar-native and web tools with pay-per-call USDC micropayments on Stellar.

Install

# Claude Code
claude mcp add xlmtools npx @xlmtools/mcp

# Gemini CLI
gemini mcp add xlmtools npx -y @xlmtools/mcp

# OpenAI Codex
codex mcp add xlmtools npx -y @xlmtools/mcp

# Cursor / Windsurf / Claude Desktop / Cline (add to MCP config JSON)
{ "command": "npx", "args": ["-y", "@xlmtools/mcp"] }

# VS Code Copilot (.vscode/mcp.json — note: "servers", not "mcpServers")
{ "type": "stdio", "command": "npx", "args": ["-y", "@xlmtools/mcp"] }

See the MCP Host Setup guide for exact config for all 12 supported clients.

What you get

Paid tools ($0.001–$0.04 USDC per call, settled on Stellar testnet via MPP):

| Tool | Price | Source | | --- | --- | --- | | search | $0.003 | Brave Search | | research | $0.010 | Exa | | youtube | $0.002 | YouTube Data API | | screenshot | $0.010 | ScreenshotOne | | scrape | $0.002 | Text extraction | | image | $0.040 | OpenAI DALL-E 3 | | stocks | $0.001 | Alpha Vantage |

Free tools (14): crypto, weather, domain, wallet, tools, budget, dex-orderbook, dex-candles, dex-trades, swap-quote, stellar-asset, stellar-account, stellar-pools, oracle-price

How it works

On first run, XLMTools auto-generates a Stellar testnet wallet at ~/.xlmtools/config.json, funds it with XLM via friendbot, and adds a USDC trustline. Paid tool calls trigger an HTTP 402 challenge-response — the local mppx client signs a Soroban SAC USDC transfer, retries with payment proof, and returns the result plus a verifiable Stellar transaction hash.

Architecture

This package is a ~15-line stdio wrapper. It imports createMcpServer() from @xlmtools/cli (which owns all 21 tool implementations, the wallet, budget tracking, and response caching) and connects it to an MCP StdioServerTransport. The two packages are published separately because npx requires a single-bin package to auto-resolve — shipping MCP and CLI as separate single-bin packages is the only way npx @xlmtools/mcp works without a -p flag.

Also available as

  • Standalone CLI: npm install -g @xlmtools/cli — gives you xlm in your terminal. Same wallet, same tools.
  • Agent Skill: pnpm dlx skills add github:Blockchain-Oracle/xlmtools --skill xlmtools — teaches agents when and how to use each tool.

Links

License

MIT