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

kausalayer-mcp

v1.0.3

Published

KausaLayer MCP Server - Privacy infrastructure for AI agents on Solana

Readme

KausaLayer MCP Server

Privacy infrastructure for AI agents on Solana. Route SOL privately via dynamic maze routing.

⚠️ IN DEVELOPMENT - This project is under active development and not yet ready for production use. APIs may change without notice.

Overview

KausaLayer MCP exposes privacy tools via the Model Context Protocol (MCP), enabling AI agents like Claude, Cursor, and custom trading bots to perform private Solana transactions.

Features

  • maze_route - Send SOL privately via dynamic maze routing (A → maze → B)
  • create_pocket - Create stealth wallets funded via maze routing
  • sweep_pocket - Withdraw funds from pockets via maze routing
  • export_pocket_key - Export private keys for Phantom/Solflare import
  • estimate_fee - Estimate fees before executing

API Endpoints

| Endpoint | Method | Description | |----------|--------|-------------| | /health | GET | Health check | | /tools | GET | List available MCP tools | | /register | POST | Register API key | | /call | POST | Execute a tool | | /tier | GET | Get user tier info |

Authentication

  1. Sign message with your Solana wallet: KausaLayer MCP Access\nWallet: <pubkey>\nTimestamp: <unix>
  2. POST to /register with wallet_address and signature
  3. Receive API key (format: kl_xxxxxxxx)
  4. Include x-api-key header in subsequent requests

Tier System

| Tier | KAUSA Required | Fee | Daily Routes | |------|---------------|-----|--------------| | FREE | 0 | 1.0% | 10 | | BASIC | 1,000 | 0.5% | 50 | | PRO | 10,000 | 0.25% | 200 | | ENTERPRISE | 100,000 | 0.1% | Unlimited |

Hold $KAUSA tokens to unlock lower fees and higher limits.

KAUSA Token: BWXSNRBKMviG68MqavyssnzDq4qSArcN7eNYjqEfpump

Usage Example

# Register API key
curl -X POST https://mcp.kausalayer.com/register \
  -H "Content-Type: application/json" \
  -d '{"wallet_address": "YOUR_PUBKEY", "signature": "YOUR_SIGNATURE"}'

# Estimate fee
curl -X POST https://mcp.kausalayer.com/call \
  -H "Content-Type: application/json" \
  -H "x-api-key: kl_your_api_key" \
  -d '{"tool": "estimate_fee", "arguments": {"amount_sol": 1.0, "operation": "route"}}'

# Create private route
curl -X POST https://mcp.kausalayer.com/call \
  -H "Content-Type: application/json" \
  -H "x-api-key: kl_your_api_key" \
  -d '{"tool": "maze_route", "arguments": {"destination": "DEST_PUBKEY", "amount_sol": 1.0}}'

MCP Client Integration

🚧 Coming Soon - npm package will be published for easy integration with Claude Desktop, Cursor, and other MCP-compatible clients.

License

Apache 2.0

Links

  • Website: https://kausalayer.com
  • Docs: https://docs.kausalayer.com
  • Twitter: https://x.com/kausalayer