{
  "markdown": "<div align=\"center\">\n\n# Flippa.com Listings MCP\n\n**Search, analyze, and evaluate online businesses on Flippa — powered by AI.**\n\n**No API key required. No account needed. Just plug into Claude and go.**\n\n[![npm version](https://img.shields.io/npm/v/flippa-mcp-server?style=for-the-badge&logo=npm&logoColor=white&color=CB3837)](https://www.npmjs.com/package/flippa-mcp-server)\n[![npm downloads](https://img.shields.io/npm/dm/flippa-mcp-server?style=for-the-badge&logo=npm&logoColor=white&color=CB3837)](https://www.npmjs.com/package/flippa-mcp-server)\n[![GitHub stars](https://img.shields.io/github/stars/sind00/flippa-mcp?style=for-the-badge&logo=github&color=181717)](https://github.com/sind00/flippa-mcp)\n[![License](https://img.shields.io/badge/license-MIT-blue?style=for-the-badge)](LICENSE)\n[![Sponsor](https://img.shields.io/badge/sponsor-♥-ea4aaa?style=for-the-badge&logo=github-sponsors)](https://github.com/sponsors/sind00)\n\n<br>\n\n```bash\nnpx flippa-mcp-server\n```\n\n**Works on Mac, Windows, and Linux.**\n\n<br>\n\n![Flippa MCP Server](assets/terminal.svg)\n\n<br>\n\n[Why Flippa MCP](#why-flippa-mcp) · [Tools](#tools) · [Getting Started](#getting-started) · [Examples](#examples)\n\n</div>\n\n---\n\n## Why Flippa MCP\n\n[Flippa](https://flippa.com) is the world's largest marketplace for buying and selling online businesses — websites, SaaS products, ecommerce stores, apps, newsletters, and more. Thousands of listings, each with revenue claims, traffic stats, and asking prices that may or may not make sense.\n\nEvaluating a listing manually means checking revenue multiples, comparing prices across similar businesses, assessing risk factors, and doing math you'll probably get wrong at 2am. Multiply that by the dozens of listings you need to review to find a good deal.\n\n**Flippa MCP gives Claude full marketplace intelligence.** Five specialized tools that search listings, pull detailed financials, compute valuation metrics, find comparable sales, and generate market overviews. Zero configuration. No API key. No Flippa account. Just install and ask Claude to find you a good deal.\n\n---\n\n## Who This Is For\n\n- **Entrepreneurs** evaluating businesses to buy on Flippa\n- **Investors** doing due diligence on online business acquisitions\n- **Sellers** researching pricing and market conditions before listing\n- **Anyone** who wants AI-powered marketplace intelligence without the spreadsheet grind\n\n---\n\n## Getting Started\n\n### Install\n\n```bash\nnpx flippa-mcp-server\n```\n\nOr install globally:\n\n```bash\nnpm install -g flippa-mcp-server\n```\n\n### Claude Desktop Configuration\n\nAdd to your Claude Desktop config file:\n\n```json\n{\n  \"mcpServers\": {\n    \"flippa\": {\n      \"command\": \"npx\",\n      \"args\": [\"flippa-mcp-server\"]\n    }\n  }\n}\n```\n\n<details>\n<summary><strong>Config file locations</strong></summary>\n\n| Platform | Path |\n|----------|------|\n| macOS | `~/Library/Application Support/Claude/claude_desktop_config.json` |\n| Windows | `%APPDATA%\\Claude\\claude_desktop_config.json` |\n| Linux | `~/.config/claude/claude_desktop_config.json` |\n\n</details>\n\n> [!TIP]\n> **No API key required!** The Flippa listings API is public. All 5 tools work without any authentication or Flippa account.\n\n---\n\n## Tools\n\n| Tool | Description |\n|------|-------------|\n| `flippa_search_listings` | Search and browse listings with filters for type, status, sale method, and sorting |\n| `flippa_get_listing` | Get complete details for any listing by ID |\n| `flippa_analyze_listing` | Compute valuation metrics: revenue multiples, ROI, risk factors, and buy/pass verdict |\n| `flippa_comparable_sales` | Find comparable listings and get aggregate pricing stats |\n| `flippa_market_overview` | Get market-wide statistics across property types |\n\n<details>\n<summary><strong>flippa_search_listings</strong> — Search the marketplace</summary>\n\n| Parameter | Type | Required | Default | Description |\n|-----------|------|----------|---------|-------------|\n| `property_type` | string | No | — | `website`, `saas`, `ecommerce_store`, `fba`, `ios_app`, `android_app`, `ai_apps_and_tools`, `youtube`, `newsletter`, `service`, `other` |\n| `status` | string | No | `open` | `open`, `closed`, `ended` |\n| `sale_method` | string | No | — | `auction`, `classified` |\n| `sort_alias` | string | No | — | `lowest_price`, `highest_price`, `most_active`, `most_recent`, `ending_soonest`, `most_profitable`, `most_relevant` |\n| `page_number` | number | No | `1` | Page number for pagination |\n| `page_size` | number | No | `30` | Results per page (1–100) |\n| `response_format` | string | No | `markdown` | `markdown` or `json` |\n\n</details>\n\n<details>\n<summary><strong>flippa_get_listing</strong> — Get listing details</summary>\n\n| Parameter | Type | Required | Default | Description |\n|-----------|------|----------|---------|-------------|\n| `listing_id` | string | **Yes** | — | The Flippa listing ID (e.g., `\"12299903\"`) |\n| `response_format` | string | No | `markdown` | `markdown` or `json` |\n\nReturns complete listing data: pricing, revenue, profit, traffic, seller info, verification status, description, images, and more.\n\n</details>\n\n<details>\n<summary><strong>flippa_analyze_listing</strong> — Valuation analysis</summary>\n\n| Parameter | Type | Required | Default | Description |\n|-----------|------|----------|---------|-------------|\n| `listing_id` | string | **Yes** | — | The Flippa listing ID to analyze |\n| `response_format` | string | No | `markdown` | `markdown` or `json` |\n\nReturns computed metrics:\n- Revenue multiple, profit multiple, annual revenue\n- Price per visitor, revenue per visitor\n- Estimated ROI in months\n- Verdict: **underpriced**, **fair**, **overpriced**, or **insufficient_data**\n- Risk factors (unverified revenue, low traffic, no bids, etc.)\n\n</details>\n\n<details>\n<summary><strong>flippa_comparable_sales</strong> — Find comparables</summary>\n\n| Parameter | Type | Required | Default | Description |\n|-----------|------|----------|---------|-------------|\n| `listing_id` | string | No | — | Find comparables for this listing (uses its type and revenue range) |\n| `property_type` | string | No | — | Filter by type. Overrides listing's type if both provided. |\n| `page_size` | number | No | `10` | Number of comparables (1–20) |\n| `response_format` | string | No | `markdown` | `markdown` or `json` |\n\nReturns comparable listings with aggregate stats: average price, median price, average revenue multiple, and price range.\n\n</details>\n\n<details>\n<summary><strong>flippa_market_overview</strong> — Market snapshot</summary>\n\n| Parameter | Type | Required | Default | Description |\n|-----------|------|----------|---------|-------------|\n| `property_type` | string | No | — | Focus on one type, or omit for full market view |\n| `response_format` | string | No | `markdown` | `markdown` or `json` |\n\nReturns market-wide stats: total listings, breakdown by type, price/revenue/profit statistics (min, max, avg, median), average revenue multiple, and verified revenue percentage.\n\n</details>\n\n---\n\n## Examples\n\n### Search for profitable SaaS businesses\n\n> *\"Find me SaaS listings on Flippa sorted by most profitable\"*\n\nUses `flippa_search_listings` with `property_type: \"saas\"` and `sort_alias: \"most_profitable\"`.\n\n### Analyze a specific listing\n\n> *\"Analyze Flippa listing 12299903 — is it fairly priced?\"*\n\nUses `flippa_analyze_listing` to compute revenue multiples, ROI, and risk factors, then delivers a verdict.\n\n### Compare with the market\n\n> *\"Find comparable listings for this SaaS business and tell me if the asking price is reasonable\"*\n\nUses `flippa_comparable_sales` to find similar listings by type and revenue range, then compares pricing.\n\n### Get a market snapshot\n\n> *\"Give me an overview of the current Flippa marketplace for ecommerce stores\"*\n\nUses `flippa_market_overview` to aggregate stats across all ecommerce listings.\n\n### Deep dive evaluation\n\n> *\"Search for the top 5 most profitable websites on Flippa, then analyze each one and tell me which is the best deal\"*\n\nChains `flippa_search_listings` → `flippa_analyze_listing` across multiple listings to find the best opportunity.\n\n---\n\n## How Analysis Works\n\nThe `flippa_analyze_listing` tool fetches a listing and computes valuation metrics:\n\n| Metric | Formula |\n|--------|---------|\n| **Revenue Multiple** | Asking Price / Annual Revenue |\n| **Profit Multiple** | Asking Price / Annual Profit |\n| **ROI Estimate** | Asking Price / Monthly Profit (payback in months) |\n| **Price per Visitor** | Asking Price / Monthly Uniques |\n\n### Verdict Logic\n\n| Revenue Multiple | Verdict |\n|-----------------|---------|\n| < 2x | **Underpriced** — below typical range, investigate why |\n| 2x – 4x | **Fair** — within standard online business valuation range |\n| > 4x | **Overpriced** — above typical range, ensure premium is justified |\n| No revenue data | **Insufficient Data** — cannot determine valuation |\n\n### Risk Factors Detected\n\nThe tool automatically flags these concerns:\n\n- No reported revenue or profit\n- Traffic data unavailable or very low (< 1,000 uniques/mo)\n- Revenue not verified by Flippa\n- Traffic not verified by Flippa\n- Seller is not a Super Seller\n- No bids on the listing\n- No images provided\n- Very short listing description (< 100 chars)\n- Confidential listing with limited data\n\n---\n\n## Configuration\n\n| Variable | Required | Default | Description |\n|----------|----------|---------|-------------|\n| `FLIPPA_BASE_URL` | No | `https://flippa.com/v3` | Override the Flippa API base URL |\n| `FLIPPA_API_TOKEN` | No | — | Bearer token for future authenticated endpoints (watchlist, bidding) |\n\n### With environment variables\n\n```json\n{\n  \"mcpServers\": {\n    \"flippa\": {\n      \"command\": \"npx\",\n      \"args\": [\"flippa-mcp-server\"],\n      \"env\": {\n        \"FLIPPA_API_TOKEN\": \"your-token-here\"\n      }\n    }\n  }\n}\n```\n\n---\n\n## Supported Property Types\n\n| Type | Description |\n|------|-------------|\n| `website` | Content sites, blogs, media properties |\n| `saas` | Software as a Service businesses |\n| `ecommerce_store` | Online stores and shops |\n| `fba` | Amazon FBA businesses |\n| `ios_app` | iOS applications |\n| `android_app` | Android applications |\n| `ai_apps_and_tools` | AI-powered applications and tools |\n| `youtube` | YouTube channels |\n| `newsletter` | Email newsletters |\n| `service` | Service businesses and agencies |\n| `other` | Other business types |\n\n---\n\n## Development\n\n```bash\ngit clone https://github.com/sind00/flippa-mcp.git\ncd flippa-mcp\nnpm install\nnpm run dev    # Watch mode with tsx\nnpm run build  # Compile TypeScript\nnpm start      # Run compiled server\n```\n\n### Project Structure\n\n```\nsrc/\n  index.ts              # Server entry point\n  types.ts              # TypeScript interfaces\n  constants.ts          # Configuration constants\n  schemas/\n    listing.ts          # Zod validation schemas\n  services/\n    flippa-client.ts    # HTTP client (retry, rate limiting)\n    formatter.ts        # Response formatting (markdown/json)\n  tools/\n    search.ts           # flippa_search_listings\n    details.ts          # flippa_get_listing\n    analyze.ts          # flippa_analyze_listing\n    compare.ts          # flippa_comparable_sales\n    market.ts           # flippa_market_overview\n```\n\n---\n\n## Support This Project\n\nIf Flippa MCP helps you find great deals, consider sponsoring to keep development going:\n\n[![Sponsor on GitHub](https://img.shields.io/badge/Sponsor_on_GitHub-♥-ea4aaa?style=for-the-badge&logo=github-sponsors)](https://github.com/sponsors/sind00)\n\n---\n\n## License\n\nMIT License. See [LICENSE](LICENSE) for details.\n\n---\n\n<div align=\"center\">\n\n**Flippa has the listings. <-- MCP --> LLMs have the brains.**\n\n</div>\n",
  "bytes": 11646,
  "sha": "1fc1549820966071c05d2283e58bef0277062840883e3f70192e904d6aea4430",
  "repo_slug": "sind00/flippa-mcp",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_sind00_flippa_mcp_82ee3548/readme"
}