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

conto-mcp-server

v0.2.0

Published

Conto MCP Server - Payment authorization for AI agents

Downloads

17

Readme

conto-mcp-server

MCP (Model Context Protocol) server for Conto — AI agent wallet management and payment authorization.

Gives Claude, Claude Code, and other MCP-compatible agents the ability to manage wallets, make payments, track transactions, and query analytics through Conto.

Quick Start

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "conto": {
      "command": "npx",
      "args": ["conto-mcp-server"],
      "env": {
        "CONTO_API_KEY": "conto_agent_xxx...",
        "CONTO_BASE_URL": "https://www.conto.finance"
      }
    }
  }
}

Claude Code

claude mcp add conto -- npx conto-mcp-server \
  --env CONTO_API_KEY=conto_agent_xxx... \
  --env CONTO_BASE_URL=https://www.conto.finance

Getting an API Key

  1. Sign in to Conto
  2. Go to Agents and create or select an agent
  3. Generate an API key from the agent's detail page
  4. Use the key as CONTO_API_KEY

Available Tools

Payments

| Tool | Description | |------|-------------| | pay | Request and execute a payment in one step | | request_payment | Request payment authorization (check policies first) | | execute_payment | Execute a previously approved payment | | check_payment_status | Check status of a payment request |

Wallets & Limits

| Tool | Description | |------|-------------| | get_wallets | List all wallets linked to this agent | | get_spending_limits | Get current spending limits and remaining balances |

Transactions

| Tool | Description | |------|-------------| | list_transactions | List transactions with optional filters | | get_transaction | Get details of a specific transaction | | retry_transaction | Retry a failed transaction |

Agent-to-Agent (A2A)

| Tool | Description | |------|-------------| | a2a_send_request | Send a payment request to another agent | | a2a_list_requests | List incoming/outgoing A2A requests | | a2a_respond | Approve or reject an A2A request | | a2a_execute | Execute an approved A2A payment | | a2a_resolve_address | Check if an address belongs to a Conto agent |

Trust & Intelligence

| Tool | Description | |------|-------------| | check_address_trust | Get trust score and risk info for a wallet address | | list_counterparties | List known counterparties with trust levels | | get_counterparty | Get counterparty details and transaction history |

Monitoring

| Tool | Description | |------|-------------| | list_alerts | List active alerts and notifications | | respond_to_alert | Acknowledge or resolve an alert | | get_approval_requests | List pending approval requests |

Analytics & Info

| Tool | Description | |------|-------------| | get_analytics | Get spending analytics and trends | | get_policies | List spending policies assigned to this agent | | get_agent_info | Get information about this agent |

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | CONTO_API_KEY | Yes | — | Agent API key from Conto dashboard | | CONTO_BASE_URL | No | https://www.conto.finance | Conto API base URL |

Example Usage

Once configured, Claude can make payments naturally:

User: Pay $50 to OpenAI for API credits

Claude: I'll check the spending limits first, then send the payment... Payment of $50 USDC sent successfully. Transaction: 0xabc...

User: Show me this week's spending

Claude: Let me pull your analytics... You've spent $340 across 12 transactions this week, mostly on API providers.

License

MIT