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

@plumise/mcp

v2.0.4

Published

MCP server for Plumise blockchain — chain queries, wallet, rewards, and AI inference

Downloads

74

Readme

English | 한국어

@plumise/mcp

npm version License: MIT MCP Badge

MCP (Model Context Protocol) server for the Plumise blockchain. Exposes 24 tools covering chain queries, wallet operations, agent network, rewards, and AI inference — letting Claude and other MCP-compatible AI assistants interact directly with the chain.

Requirements

  • Node.js 18+
  • A Plug RPC API key (get one here)
  • (Optional) A Plumise wallet private key — needed for transactions (transfer, claim, deposit)

Quick Start

Claude Desktop

Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "plumise": {
      "command": "npx",
      "args": ["-y", "@plumise/mcp"],
      "env": {
        "PLUMISE_RPC_URL": "https://plug.plumise.com/rpc/YOUR_API_KEY",
        "PLUMISE_PRIVATE_KEY": "0x..."
      }
    }
  }
}

Run directly

PLUMISE_RPC_URL=https://plug.plumise.com/rpc/YOUR_API_KEY PLUMISE_PRIVATE_KEY=0x... npx @plumise/mcp

Environment Variables

| Variable | Required | Description | |---|---|---| | PLUMISE_RPC_URL | Yes | Plug RPC endpoint (get a key) | | PLUMISE_PRIVATE_KEY | No | Wallet private key (enables transactions; read-only without it) | | PLUMISE_NETWORK | No | mainnet or testnet (default: mainnet) | | PLUMISE_INFERENCE_API_URL | No | Custom inference API endpoint |

Tools

Chain (7)

| Tool | Description | |---|---| | get_block | Block info by number or "latest" | | get_transaction | Transaction details by hash | | get_transaction_receipt | Receipt with status, gas used, and logs | | get_block_number | Latest block height | | get_gas_price | Current gas price | | get_chain_info | Comprehensive chain info (chainId, block, gas) | | get_logs | Event logs filtered by address and block range |

Wallet (4)

| Tool | Description | |---|---| | get_balance | PLM balance for any address | | transfer | Send PLM to an address | | get_nonce | Transaction count for an address | | get_code | Check whether an address is a contract |

Agent Network (3)

| Tool | Description | |---|---| | agent_status | Registration details for an agent address | | agent_list | All active agents on the network | | network_stats | Network-wide statistics |

Rewards (5)

| Tool | Description | |---|---| | pending_reward | Unclaimed reward balance | | claim_reward | Claim accumulated rewards | | reward_history | Past claim events | | epoch_info | Current epoch number and scoring weights | | contribution | Agent contribution metrics (tasks, uptime, score) |

Inference (2)

| Tool | Description | |---|---| | inference | Send an AI inference request | | model_status | Available models and their status |

Payment (4)

| Tool | Description | |---|---| | inference_balance | Credit balance and current tier | | inference_deposit | Deposit PLM to purchase inference credits | | inference_withdraw | Withdraw PLM from credit balance | | estimate_cost | Estimate inference cost for a given input |

Resources

MCP resources provide structured, readable context about the current state:

| Resource | Description | |---|---| | plumise://network | Network overview (chain info, active agents, epoch) | | plumise://wallet | Wallet info (address, balance, nonce) |

Prompts

Built-in prompt templates for common workflows:

| Prompt | Description | |---|---| | network_status | Run a full network health check | | wallet_overview | Summarize wallet financials and pending rewards |

Development

# Install dependencies
npm install

# Development mode (with tsx)
npm run dev

# Build
npm run build

# Run built version
npm start

About Plumise

Plumise is an AI-native Layer 1 blockchain (chainId 41956) built as a geth fork. It introduces on-chain agent registration, inference payment settlement, and a reward system that incentivizes distributed AI inference nodes.

  • Chain: Plumise Mainnet (chainId 41956)
  • Block reward: 10 PLM/block, halving every ~4 years
  • Core library: @plumise/core (viem-based)

License

MIT