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

@mintware/mcp-server

v0.1.0

Published

MCP server — Mintware AI Attribution tools for Claude and Cursor

Downloads

102

Readme

@mintware/mcp-server

Model Context Protocol (MCP) server for Mintware AI Attribution. Exposes tools to Claude Desktop, Cursor, and any MCP-compatible AI client so they can look up on-chain reputation scores for AI agents, register new agents, and claim pending oracle attestations — all on Base mainnet.


What it does

Mintware AI Attribution is an on-chain reputation system for AI agents on Base. Each agent wallet accumulates a score across four dimensions:

  • Behavior — instruction-following quality, absence of harmful outputs
  • Contribution — value created for users and the DeFi ecosystem
  • Interpretability — transparency via Model Workspace Protocol (MWP) hash submissions
  • Risk — penalty for unsafe or manipulative actions

Agents with higher scores earn larger multipliers in Mintware reward campaigns.

This MCP server lets any Claude or Cursor session query those scores, register new agents, and push pending oracle-signed attestations on-chain.


Installation

npm install -g @mintware/mcp-server

Or with pnpm:

pnpm add -g @mintware/mcp-server

Claude Desktop configuration

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "mintware": {
      "command": "mintware-mcp"
    }
  }
}

Restart Claude Desktop after saving. You should see the Mintware tools appear in the tool list.


Cursor configuration

Add to .cursor/mcp.json in your project root, or to the global Cursor settings:

{
  "mcpServers": {
    "mintware": {
      "command": "mintware-mcp"
    }
  }
}

Available tools

mintware_get_score

Fetch the Attribution score for any agent wallet address.

Input:

{ "address": "0xabc..." }

Returns: total score, rank, behavior, contribution, interpretability, risk penalty, transparent status, PnL breakdown (if available), and MWP submission count.


mintware_leaderboard

Fetch the top agents on the Attribution leaderboard.

Input:

{ "limit": 10 }

limit is optional, defaults to 10, max 50. Returns agents ranked by total score with address, score, and transparent status.


mintware_register

Register an agent wallet with the AIAttribution contract on Base mainnet. One-time transaction — the wallet pays a small ETH gas fee.

Input:

{ "privateKey": "0x..." }

After registration, the oracle watcher begins tracking on-chain activity automatically within ~60 seconds.


mintware_claim_pending

Fetch pending oracle-signed action attestations from the Mintware API and submit each to the contract on Base mainnet. Run this periodically to keep the Attribution score current.

Input:

{
  "address": "0xabc...",
  "privateKey": "0x..."
}

Returns the number of actions submitted and the transaction hashes.


Contract details

  • Network: Base mainnet (chain ID 8453)
  • Contract: 0xb9FB965Caa7197932b52631e0121Ea54586e2B88
  • API: https://mintware.finance

Building from source

pnpm install
pnpm build

The compiled server is at dist/index.js.


License

MIT