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

@codespar/mcp-zoop

v0.1.3

Published

MCP server for Zoop — marketplace payments, splits, sellers, buyers, transfers

Downloads

136

Readme

@codespar/mcp-zoop

MCP server for Zoop — marketplace payments with split rules

npm License: MIT

Quick Start

Claude Desktop

Add to ~/.config/claude/claude_desktop_config.json:

{
  "mcpServers": {
    "zoop": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-zoop"],
      "env": {
        "ZOOP_API_KEY": "your-key",
        "ZOOP_MARKETPLACE_ID": "your-marketplace-id"
      }
    }
  }
}

Claude Code

claude mcp add zoop -- npx @codespar/mcp-zoop

Cursor / VS Code

Add to .cursor/mcp.json or .vscode/mcp.json:

{
  "servers": {
    "zoop": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-zoop"],
      "env": {
        "ZOOP_API_KEY": "your-key",
        "ZOOP_MARKETPLACE_ID": "your-marketplace-id"
      }
    }
  }
}

Tools (28)

| Tool | Purpose | |---|---| | create_transaction | Create a transaction in Zoop (Pix, boleto, or credit card) | | get_transaction | Get transaction details by ID | | list_transactions | List transactions with optional filters | | create_split_rule | Create a split rule for distributing payments between sellers | | create_seller | Create a seller (individual or business) in the marketplace | | get_seller | Get seller details by ID | | list_sellers | List sellers in the marketplace | | create_buyer | Create a buyer in the marketplace | | get_balance | Get balance for a seller or the marketplace | | create_transfer | Create a transfer to a seller's bank account | | refund_transaction | Refund a transaction (full or partial) | | get_receivables | Get receivables for a transaction | | create_token_card | Tokenize a credit card for secure payments | | create_bank_account | Create a bank account token for a seller | | get_seller_balance | Get detailed balance for a specific seller | | update_seller | Update seller information | | list_transfers | List marketplace transfers with filters | | get_transfer | Get transfer details by ID | | create_subscription | Create a recurring subscription | | list_receivables | List all receivables for the marketplace | | create_pix_payment | Create a PIX payment transaction | | get_pix_payment | Get PIX payment details including QR code and copy-paste payload | | cancel_subscription | Cancel a recurring subscription | | list_subscriptions | List subscriptions in the marketplace | | list_disputes | List disputes/chargebacks in the marketplace | | get_marketplace | Get marketplace information and settings | | get_dispute | Get dispute details by ID | | get_subscription | Get subscription details by ID |

Authentication

Zoop uses Basic Auth with the API key as username and empty password.

Sandbox / Testing

Zoop provides a sandbox environment accessible via the dashboard.

Get your credentials

  1. Go to Zoop Documentation
  2. Create a developer account
  3. Get your API key and marketplace ID from the dashboard
  4. Set the environment variables

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | ZOOP_API_KEY | Yes | API key from Zoop dashboard | | ZOOP_MARKETPLACE_ID | Yes | Marketplace ID |

Roadmap

v0.2 (planned)

  • get_dispute — Get dispute details by ID
  • respond_dispute — Respond to a dispute with evidence
  • list_plans — List all subscription plans
  • update_subscription — Update a subscription's details
  • cancel_subscription — Cancel an active subscription

v0.3 (planned)

  • batch_transfers — Process multiple transfers in a single request
  • detailed_reports — Generate detailed financial reports
  • webhook_management — Register, list, and delete webhooks

Want to contribute? Open a PR or request a tool.

Links

Enterprise

Need governance, budget limits, and audit trails for agent payments? CodeSpar Enterprise adds policy engine, payment routing, and compliance templates on top of these MCP servers.

License

MIT