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

@zeromodern/mcp-server-0mod

v1.3.0

Published

MCP server wrapping the 0mod API Gateway for any AI agent

Downloads

818

Readme

@zeromodern/mcp-server-0mod

npm TypeScript License: MIT

Model Context Protocol (MCP) server wrapping the 0mod API Gateway edge tools for any AI agent. HTTP 402 micropayments on Base EVM are handled automatically.

Wallet & Network Prerequisites

0mod gateway utilities use x402 HTTP 402 micropayments on Base EVM:

  • Network: Base Mainnet (eip155:8453)
  • Asset: USDC on Base
  • Environment Variable: PAYER_PRIVATE_KEY=0x... (or EVM_PRIVATE_KEY / X402_PRIVATE_KEY)

When PAYER_PRIVATE_KEY is present in the environment, tool calls transparently sign payment authorizations and execute with zero manual intervention.

Requirements

  • Node.js >= 18
  • npm >= 9

Install

npm install @zeromodern/mcp-server-0mod

Setup & Configuration

Claude Desktop (claude_desktop_config.json)

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "0mod": {
      "command": "npx",
      "args": ["-y", "@zeromodern/mcp-server-0mod"],
      "env": {
        "PAYER_PRIVATE_KEY": "0x_your_private_key_here"
      }
    }
  }
}

OpenCode / Cursor / CLI

Run directly via npx:

PAYER_PRIVATE_KEY=0x_your_private_key_here npx -y @zeromodern/mcp-server-0mod

Available Tools

💡 Pricing: For live per-call pricing and endpoint status across all tools, visit api.0mod.com or fetch https://api.0mod.com/api/v1/discovery.

| Tool Name | Description | Input Schema Example | | :--- | :--- | :--- | | stealth_dom | Headless web page fetch from Cloudflare edge | { "url": "https://example.com" } | | airgap_scrub | Redact SSN, phone, email, ZIP via Workers AI | { "text": "Call me at 555-0199" } | | rag_shrink | Strip HTML boilerplate to clean Markdown for RAG | { "html": "<html>...</html>" } | | code_denoise | Remove comments, docstrings, sourcemaps from code | { "code": "const x = 1;" } | | domain_check | Query RDAP registry for domain availability | { "domain": "example.com" } | | dex_price_summary | Real-time DEX token price, volume, liquidity | { "query": "USDC" } | | x_sentiment | Social & market sentiment scoring | { "topic": "crypto market" } | | image_ocr_shrink | Vision OCR text and table extraction | { "imageUrl": "https://..." } | | embed_text | 768-dim text embedding generation | { "text": "sample text" } | | embed_multilingual | 1024-dim multilingual text embedding generation | { "text": "sample text" } | | summarize_text | Executive TL;DR document summarization | { "text": "long text string" } |

Ecosystem Packages

Smithery

This server is registered on Smithery for one-click deployment.

Troubleshooting

  • Server not connecting: Verify your MCP client supports stdio transport. Check that PAYER_PRIVATE_KEY is passed in the env block.
  • Authentication / Payment errors: Ensure PAYER_PRIVATE_KEY is set with a valid Base EVM private key holding a USDC balance for x402 micropayments.
  • Timeout errors: Micropayment verification on Base adds network latency. Increase your MCP client's request timeout if needed.

License

MIT