Free MCP servers · No API key

Audit bills and quotes from inside Claude, Cursor, or your AI assistant

Install a Woogoro MCP and your AI assistant becomes a quote auditor. Paste a medical bill, roofing quote, HVAC estimate, or auto repair invoice into chat — the assistant uses Woogoro's tools to flag billing errors, compare to fair-price benchmarks, and draft a pushback letter you can send.

Claude Desktop Cursor Cline Smithery $0 / month

How a Woogoro MCP works

MCP (Model Context Protocol) is an open standard from Anthropic that lets AI assistants call external tools. Woogoro publishes one MCP server per vertical, hosted free on Cloudflare Workers. Your assistant uses these tools the same way it uses web search.

1

Install once

Add the Woogoro MCP to Claude Desktop, Cursor, or any MCP-compatible client. Smithery has a one-click installer for Cursor; Claude Desktop is a JSON config paste. 30 seconds.

2

Paste a bill or quote

In your assistant, paste the bill or quote (PDF, photo, or text) and ask it to audit it. The assistant auto-detects the right Woogoro tool and forwards the document.

3

Get the audit + dispute kit

Fair-price benchmark, error flags, dispute letter, and phone-negotiation script — all in one chat conversation, with citations to the relevant statutes and codes.

Available MCPs

All four servers are live, hosted at $0/mo, and listed on the major MCP directories. Each exposes the same five tools: parse, check_errors, lookup_average_price, draft_dispute, negotiation_script.

Medical Bill Analyzer

mcp.woogoro.com/mcp

Audit hospital bills, EOBs, and medical statements. Compares 146 CPT/HCPCS codes to state-adjusted Medicare benchmarks and flags surprise billing under federal law.

  • Catches NCCI unbundling violations, upcoding, duplicate charges, balance billing
  • Flags No Surprises Act violations (42 USC 300gg-111)
  • Drafts dispute letters across 9 error categories with statute citations
  • Companion to woogoro.com/medical-bill-analyzer
Manual install (Claude Desktop config)

Add to %APPDATA%\Claude\claude_desktop_config.json on Windows or ~/Library/Application Support/Claude/claude_desktop_config.json on Mac, then restart Claude Desktop.

{
  "mcpServers": {
    "woogoro-medical": {
      "url": "https://mcp.woogoro.com/mcp"
    }
  }
}

Try: "Use the woogoro-medical MCP to audit this ER bill: [paste]"

Roofing Quote Analyzer

roofing-mcp.woogoro.com/mcp

Audit roofing contractor quotes against state-adjusted pricing from 50+ flywheel-calibrated comps. Catches the missing-scope items contractors leave out of the headline price.

  • Flags missing decking, ridge vent, underlayment, drip edge, ice-and-water shield
  • Validates shingle warranty terms and tear-off scope
  • Drafts pushback questions and contract-language disputes
  • Companion to woogoro.com/roofing-quote-analyzer
Manual install (Claude Desktop config)

Add to your Claude Desktop config and restart Claude Desktop.

{
  "mcpServers": {
    "woogoro-roofing": {
      "url": "https://roofing-mcp.woogoro.com/mcp"
    }
  }
}

Try: "Use the woogoro-roofing MCP to audit this quote: [paste]"

HVAC Quote Analyzer

hvac-mcp.woogoro.com/mcp

Audit HVAC quotes for sizing, refrigerant, efficiency, and upsells. Validates AHRI matched systems, catches refrigerant overcharge, and flags unnecessary system replacements.

  • Validates AHRI matched indoor + outdoor units
  • Checks SEER2 ratings against 2023+ federal minimums
  • Flags R-454B vs R-410A pricing discrepancies post 2025 phase-out
  • Companion to woogoro.com/hvac-quote-analyzer
Manual install (Claude Desktop config)

Add to your Claude Desktop config and restart Claude Desktop.

{
  "mcpServers": {
    "woogoro-hvac": {
      "url": "https://hvac-mcp.woogoro.com/mcp"
    }
  }
}

Try: "Use the woogoro-hvac MCP to audit this quote: [paste]"

Auto Repair Quote Analyzer

auto-repair-mcp.woogoro.com/mcp

Audit shop estimates against MOTOR labor guide standards and typical parts markup. Catches warranty-covered work being billed and recall-eligible parts.

  • Cites Magnuson-Moss Warranty Act (15 USC §§ 2301-2312)
  • Checks NHTSA recall coverage (49 USC § 30120(g)(1) — 15-year free remedy limit)
  • Flags parts markup over 40% and labor hours exceeding flat-rate guides
  • Companion to woogoro.com/auto-repair
Manual install (Claude Desktop config)

Add to your Claude Desktop config and restart Claude Desktop.

{
  "mcpServers": {
    "woogoro-auto-repair": {
      "url": "https://auto-repair-mcp.woogoro.com/mcp"
    }
  }
}

Try: "Use the woogoro-auto-repair MCP to audit this quote: [paste]"

Install methods

Three ways to install, depending on which assistant you use. Hosted (recommended) requires nothing on your machine; stdio runs the server locally for power users who want to read or modify the source.

Claude Desktop — hosted (recommended)

Open the config file at %APPDATA%\Claude\claude_desktop_config.json (Windows) or ~/Library/Application Support/Claude/claude_desktop_config.json (macOS). Add the server you want, save, and restart Claude Desktop.

{
  "mcpServers": {
    "woogoro-medical": { "url": "https://mcp.woogoro.com/mcp" },
    "woogoro-roofing": { "url": "https://roofing-mcp.woogoro.com/mcp" },
    "woogoro-hvac":    { "url": "https://hvac-mcp.woogoro.com/mcp" },
    "woogoro-auto-repair": { "url": "https://auto-repair-mcp.woogoro.com/mcp" }
  }
}

Cursor — one click via Smithery

Smithery offers a one-click installer for Cursor and other MCP-compatible IDEs. Search for "woogoro" on Smithery and click Install on the server you want.

Search Smithery

Cursor uses ~/.cursor/mcp.json and supports the same JSON format as Claude Desktop above.

Local stdio (power users)

Clone the source, build, and run locally over stdio. Lets you read or modify the server. Source for all four MCPs is in the trueprice repo under mcp/, mcp-roofing/, mcp-hvac/, and mcp-auto-repair/.

git clone https://github.com/TruePrice-tech/trueprice
cd trueprice/mcp
npm install && npm run build
# Then point your client at:
node /abs/path/to/trueprice/mcp/dist/index.js

Verify it works

After install, open a fresh chat and try one of these prompts. Your assistant will say it's calling the Woogoro tool and show the structured result.

  • "Use the woogoro-medical MCP to audit this hospital bill: [paste]"
  • "Audit this roofing quote with the woogoro-roofing MCP: [paste]"
  • "What's a fair price for CPT 99213 in California using the woogoro-medical MCP?"
  • "Draft a Magnuson-Moss dispute letter for this auto repair issue using woogoro-auto-repair."

Frequently asked questions

What is an MCP?
MCP stands for Model Context Protocol, an open standard published by Anthropic that lets AI assistants call external tools. A Woogoro MCP is a tool the assistant can use to audit a bill or contractor quote you paste into the chat. Same idea as a browser plugin, but for AI assistants.
Is the Woogoro MCP really free?
Yes. All four Woogoro MCP servers run on Cloudflare Workers and are free for end users. No API key. No signup. They wrap the same Woogoro analyzer APIs that power the web tools at woogoro.com, hosted at $0/mo.
Which AI assistants are supported?
Any MCP-compatible client. Confirmed working in Claude Desktop, Cursor, and Cline. Smithery has a one-click installer for Cursor. ChatGPT support depends on third-party MCP bridges and is in early access.
What are the five tools?
Each Woogoro MCP exposes the same five tools: (1) parse the quote or bill into structured line items, (2) check_errors for vertical-specific red flags, (3) lookup_average_price for any line item with state adjustment, (4) draft_dispute for a formal pushback letter with statute citations, and (5) negotiation_script for a phone call with pushback responses.
Does Woogoro see my bill or quote?
Yes, transiently. The MCP server forwards the document to Woogoro's analyzer API for processing — the same way the web pages at woogoro.com do. Anonymized aggregate data (line items, codes, state) is captured to improve pricing benchmarks. No patient names, addresses, account numbers, or document images are retained.
Why MCPs and not just a website?
If you already work in Claude Desktop or Cursor, switching to a browser tab to check a bill breaks the flow. With the MCP installed, you stay in your assistant: paste, ask, get the audit and dispute letter, and copy the letter directly. The assistant can also chain Woogoro tools with web search, calendar, or email tools you have installed.
What about the other 16 verticals?
In planning. Woogoro covers 20 verticals total on the web; the four MCPs above are the first wave. We're watching directory installs and user feedback before onboarding the remaining 16. If there's a vertical you'd want as an MCP, hello@woogoro.com.
Is the source code open?
Yes. All four servers are MIT-licensed and live in the public trueprice repo under mcp/, mcp-roofing/, mcp-hvac/, and mcp-auto-repair/. Pricing data is bundled JSON; auditing rules are TypeScript.
Woogoro MCPs forward documents to *.woogoro.com APIs for analysis. They are not affiliated with Anthropic, Cursor, or Smithery beyond using their open MCP standard and directories. Use as a benchmark, not a guarantee. Not legal, medical, or financial advice.