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

mcp-poi

v1.0.2

Published

MCP server that prepares Proof of Invention (POI) transaction requests for submission

Downloads

4

Readme

MCP POI Server

A Model Context Protocol server for processing files and preparing blockchain transactions. This server can be installed in Claude Desktop and provides a tool to process files and prepare them for blockchain transactions.

Setup

  1. Clone this repository
  2. Install dependencies:
    npm install
  3. Build the server:
    npm run build

Environment Variables

  • API_TOKEN: Your API bearer token for authentication against the PoI API. You can request a new token on Molecule's Discord Server: https://discord.gg/k4ER7vZcj8

Usage

The server provides a tool called create_proof_of_invention_request that accepts a file path returns prepared transaction data suitable for blockchain execution. This can be reused by your favorite tool that can sign and submit transactions. The binary content should be provided by the MCP client (e.g., Claude Desktop or Cursor).

https://docs.molecule.to/documentation/proof-of-invention-poi/api-access-beta

Adding to Claude Desktop

"poi": {
  "command": "node",
  "args": [
    "<working_dir>/mcp-poi/build/index.js"
  ],
  "env": {
    "API_TOKEN": "the api token "
  }
},

Tool Schema

Input:

{
  filepath: string  // A path of a binary
}

Output:

{
  transaction_request: {
    to: string,      // a PoI anchoring address (usually starts with 0x1dea)
    data: string,    // the merkle root hash that represents the PoI
    value: string,   // 0
  }
}

Running the Server

npm start

Development

For development with automatic rebuilding:

npm run dev

Error Handling

The server includes robust error handling for:

  • Missing environment variables
  • Invalid file content
  • API communication errors
  • Invalid response formats

Security

  • API tokens are loaded from environment variables
  • File contents are properly encoded before transmission
  • Error messages are sanitized to prevent information leakage
  • No filesystem access required - all content is provided by the MCP client

Usage

Plays nicely with filesystem and evm providers, e.g.

  • https://pypi.org/project/mcp-server-fetch/
  • https://www.npmjs.com/package/@mcp-dockmaster/mcp-cryptowallet-evm

This is how the our Claude desktop config looks:

{
  "mcpServers": {
    "mcp-cryptowallet-evm": {
      "command": "npx",
      "args": ["@mcp-dockmaster/mcp-cryptowallet-evm"],
      "env": {
        "PRIVATE_KEY": ""
      }
    },
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/Users/stadolf/Downloads",
        "/Users/stadolf/Documents"
      ]
    },
    "poi": {
      "command": "npx",
      "args": ["mcp-poi"],
      "env": {
        "API_TOKEN": ""
      }
    }
  }
}

| Create a poi hash from the "idea.md" file in my Documents folder ... | send and Eth transation with the poi hash to the poi to address on the base blockchain