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

etch-mcp

v0.1.3

Published

MCP server for ETCH onchain records on Abstract

Readme

etch-mcp

MCP server for ETCH -- permanent, typed, onchain records on Abstract.

Gives your AI agent three tools to create, query, and verify onchain records. Tokens are ERC-721 with generative art, optional soulbound enforcement, and five typed categories.

Quick Start

Add to your MCP client config (Claude Desktop, Cursor, Windsurf, OpenClaw, etc.):

{
  "mcpServers": {
    "etch": {
      "command": "npx",
      "args": ["-y", "etch-mcp"],
      "env": {
        "ETCH_PRIVATE_KEY": "0x..."
      }
    }
  }
}

ETCH_PRIVATE_KEY is required for minting. Read-only tools (etch_check, etch_resolve) work without it.

Tools

etch -- Create an onchain record

Mints a permanent ERC-721 token with generative art on Abstract.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | to | string | yes | Recipient address (0x...) | | name | string | yes | Name for the record | | description | string | no | What this record represents | | tokenType | string | yes | identity, attestation, credential, receipt, or pass | | soulbound | boolean | no | Non-transferable. Defaults: true for identity/attestation/credential, false for receipt/pass |

Returns: txHash, tokenId, blockNumber, view URL, art URL, OpenSea URL.

etch_check -- Query records

Look up token details by ID or check an address's balance.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | address | string | either | Get token balance for this address | | tokenId | string | either | Get details for a specific token |

Provide one or the other. Token lookup returns: URI, type, soulbound status, owner.

etch_resolve -- Resolve ERC-8004 identity

Look up an agent's identity from the ERC-8004 registry on Abstract.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | address | string | yes | Agent address to resolve |

Returns: registration status, token ID, metadata URI.

Token Types

| Type | ID | Default Soulbound | Use Case | |------|----|--------------------|----------| | Identity | 0 | yes | Onchain identity anchors | | Attestation | 1 | yes | Verified claims and proofs | | Credential | 2 | yes | Earned qualifications | | Receipt | 3 | no | Transaction records | | Pass | 4 | no | Access and membership tokens |

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | ETCH_PRIVATE_KEY | For minting | -- | Private key for signing mint transactions | | ETCH_RPC_URL | No | https://api.mainnet.abs.xyz | Abstract RPC endpoint |

Contract

Links

License

MIT