@mintware/mcp-server
v0.1.0
Published
MCP server — Mintware AI Attribution tools for Claude and Cursor
Downloads
102
Maintainers
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-serverOr with pnpm:
pnpm add -g @mintware/mcp-serverClaude 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 buildThe compiled server is at dist/index.js.
License
MIT
