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

receiptconverter-mcp

v1.0.0

Published

MCP server for ReceiptConverter — parse any receipt or invoice into structured JSON with one tool call

Downloads

101

Readme

receiptconverter-mcp

MCP server for ReceiptConverter — parse any receipt or invoice into structured JSON with a single tool call.

Connects Claude Desktop, Cursor, Windsurf, and any Model Context Protocol client directly to the ReceiptConverter API. No HTTP setup required — just drop in your API key and your AI assistant can scan receipts natively.

Quick start

1. Get an API key

Sign in at receiptconverter.com, open Dashboard → API Keys, and generate a key.

2. Add to Claude Desktop

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

{
  "mcpServers": {
    "receiptconverter": {
      "command": "npx",
      "args": ["receiptconverter-mcp"],
      "env": {
        "RECEIPTCONVERTER_API_KEY": "sk_live_your_key_here"
      }
    }
  }
}

Restart Claude. You'll see receiptconverter appear in the tools panel.

3. Add to Cursor

Open Cursor Settings → MCP and add:

{
  "receiptconverter": {
    "command": "npx",
    "args": ["receiptconverter-mcp"],
    "env": {
      "RECEIPTCONVERTER_API_KEY": "sk_live_your_key_here"
    }
  }
}

Tools

convert_receipt

Parse a receipt or invoice image/PDF into structured JSON.

| Parameter | Type | Description | |---|---|---| | url | string | Public URL of a receipt image or PDF | | file_path | string | Absolute path to a local file | | file_name | string | Optional filename hint |

One of url or file_path is required.

Supported formats: JPG, PNG, WEBP, HEIC, TIFF, BMP, PDF (text-based)

Returns:

{
  "vendor": "Starbucks",
  "date": "2024-03-15",
  "total": 12.50,
  "subtotal": 11.00,
  "tip": 1.50,
  "currency": "USD",
  "payment_method": "Visa",
  "category": "Food & Drink",
  "taxes": [{ "label": "Sales Tax", "rate": 8.875, "amount": 0.98 }],
  "items": [
    { "name": "Oat Latte", "quantity": 1, "unit_price": 6.50, "total_price": 6.50 },
    { "name": "Croissant",  "quantity": 1, "unit_price": 4.50, "total_price": 4.50 }
  ]
}

Example prompts:

  • "Parse the receipt at https://example.com/receipt.jpg"
  • "Convert /Users/me/Downloads/expense.pdf to JSON"
  • "Extract all line items from this receipt and add them to my expense spreadsheet"

check_usage

Check your remaining conversions for the current billing period.

No parameters required.


Example — Claude workflow

You: Parse this receipt and add the total to my expenses spreadsheet
     [attaches receipt.jpg]

Claude: I'll use the convert_receipt tool to parse this.

        Vendor:    Whole Foods Market
        Date:      2024-03-20
        Total:     USD 47.83
        Items (6): Organic Milk × 1 @ $5.99 ...
        Category:  Groceries

        I've extracted 6 line items. Want me to format these for your spreadsheet?

Pricing

The MCP server uses your ReceiptConverter API key. See receiptconverter.com/pricing for plan details.

  • Free tier: limited conversions/month
  • Pro plan: 100 conversions/month
  • API plan: higher limits

Links

License

MIT