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

arcium-mcp-server

v0.1.0

Published

MCP server for Arcium confidential computing network — connect AI agents to encrypted computation on Solana

Readme

arcium-mcp — MCP Server for Arcium Confidential Computing

Connects AI agents (Claude, GPT, any MCP client) to the Arcium encrypted computation network on Solana.

Status

Alpha. Full MCP server with 19 tools across 4 categories. Network Explorer and Encryption Engine use the real Arcium SDK. App Templates implement the full encrypt → submit → await → decrypt pipeline (requires deployed MXE programs and wallet). Supports both stdio and HTTP/SSE transport.

Architecture

AI Agent  <-->  MCP Protocol  <-->  arcium-mcp-server  <-->  Arcium Network (Solana)
                (stdio or HTTP)          |
                                @arcium-hq/client + reader

Tools (19 across 4 categories)

Network Explorer (7) — read-only, no wallet

| Tool | Description | |------|-------------| | arcium_list_mxes | List all MXE execution environments | | arcium_get_mxe_info | Detailed MXE info | | arcium_list_clusters | List computation clusters | | arcium_get_cluster_info | Cluster details | | arcium_list_nodes | List ARX nodes | | arcium_get_node_info | Node details | | arcium_network_stats | Aggregate stats |

Encryption Engine (4) — client-side, no transactions

| Tool | Description | |------|-------------| | arcium_generate_keypair | x25519 keypair | | arcium_get_mxe_pubkey | Fetch MXE public key for ECDH | | arcium_encrypt_values | Encrypt with RescueCipher | | arcium_decrypt_result | Decrypt computation output |

Computation Manager (4) — inspect, track, and manage computations

| Tool | Description | |------|-------------| | arcium_get_comp_definition | Circuit details | | arcium_check_computation | Check tx status | | arcium_await_finalization | Wait for computation to finalize | | arcium_list_mempool | List pending computations |

App Templates (4) — full execution flow with deployed programs

| Tool | Description | |------|-------------| | arcium_play_coinflip | Encrypted coin flip | | arcium_play_rps | Rock-paper-scissors | | arcium_sealed_bid | Sealed auction bid | | arcium_private_vote | Encrypted DAO vote |

Quick Start

npm install
npm run build
npm start

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | SOLANA_RPC_URL | Solana RPC endpoint | https://api.mainnet-beta.solana.com | | ARCIUM_CLUSTER_OFFSET | Cluster offset | 0 | | ARCIUM_WALLET_PRIVATE_KEY | Base58 or JSON array Solana keypair | (none — read-only mode) | | ARCIUM_MCP_TRANSPORT | Transport mode: stdio or http | stdio | | ARCIUM_MCP_PORT | HTTP port (when transport=http) | 3000 | | ARCIUM_COINFLIP_PROGRAM | Coinflip MXE program ID | (disabled) | | ARCIUM_RPS_PROGRAM | RPS MXE program ID | (disabled) | | ARCIUM_AUCTION_PROGRAM | Auction MXE program ID | (disabled) | | ARCIUM_VOTING_PROGRAM | Voting MXE program ID | (disabled) |

Claude Desktop config (stdio)

{
  "mcpServers": {
    "arcium": {
      "command": "node",
      "args": ["path/to/dist/index.js"],
      "env": {
        "SOLANA_RPC_URL": "https://api.devnet.solana.com"
      }
    }
  }
}

HTTP/SSE mode (for hosted usage)

ARCIUM_MCP_TRANSPORT=http ARCIUM_MCP_PORT=3000 npm start
# MCP endpoint: http://localhost:3000/mcp
# Health check: http://localhost:3000/health

Development (Ralph Wiggum Method)

This project uses the Ralph Wiggum method for AI-driven iterative development.

# Planning mode — analyze specs vs code, generate task list
./loop.sh plan

# Build mode — implement one task per iteration, commit, repeat
./loop.sh 20

Key files:

  • specs/* — Requirement specs per topic of concern
  • IMPLEMENTATION_PLAN.md — Prioritized task list (generated/updated by Ralph)
  • AGENTS.md — Operational guide for build/test commands
  • PROMPT_plan.md / PROMPT_build.md — Loop instructions

License

MIT