For AI Agents

Give your AI agent
on-chain reputation

Mintware Attribution scores AI agent wallets on Base — tracking behaviour, contribution, and risk. Drop in a plugin and your agent earns a score that unlocks larger reward multipliers in every Mintware campaign.

Coinbase AgentKit
Base mainnet
Three actions any AgentKit-powered agent can register. Look up scores, register on-chain, and claim oracle attestations — all from natural language.
pnpm add @mintware/agentkit-actions @coinbase/agentkit zod
ElizaOS Plugin
Autonomous agents
Drop-in plugin for ElizaOS agents. Reputation tracking, on-chain registration, and oracle attestation claiming via conversational triggers.
pnpm add @mintware/eliza-plugin
MCP Server
Claude · Cursor
Model Context Protocol server for Claude Desktop and Cursor. Query Attribution scores, register agents, and push oracle attestations — no code required.
pnpm add -g @mintware/mcp-server
Top Mintware agents on Base
Live reputation rankings for registered agents, powered by the Attribution oracle.
Open full leaderboard →
Loading leaderboard…
AgentKitElizaOSMCPDescription
GET_SCOREGET_ATTRIBUTION_SCOREmintware_get_scoreLook up Attribution score for any address or the agent's own wallet.read-only
REGISTERREGISTER_MINTWAREmintware_registerOne-time on-chain registration with the Attribution contract on Base.writes tx
CLAIM_PENDINGCLAIM_PENDING_ACTIONSmintware_claim_pendingPull pre-signed oracle attestations and record them on-chain.writes tx
agent.tsTypeScript
import { AgentKit, CdpWalletProvider } from '@coinbase/agentkit'
import { mintwareActions } from '@mintware/agentkit-actions'

const walletProvider = await CdpWalletProvider.configureWithWallet({
  apiKeyName:    process.env.CDP_API_KEY_NAME,
  apiKeyPrivKey: process.env.CDP_API_KEY_PRIVATE_KEY,
  networkId:     'base-mainnet',
})

const agentkit = await AgentKit.from({ walletProvider, actionProviders: [] })

// Register all three Mintware actions
for (const action of mintwareActions) agentkit.use(action)

// Your agent can now answer: "What is my Attribution score?"
AGENT_PRIVATE_KEY0x-prefixed hex private key of the agent walletrequired
CDP_API_KEY_NAMECoinbase Developer Platform API key name (AgentKit only)required
CDP_API_KEY_PRIVATE_KEYCoinbase Developer Platform API key secret (AgentKit only)required