{
  "markdown": "# Fiverr MCP Server\n\n[![PyPI version](https://badge.fury.io/py/fiverr-mcp-server.svg)](https://pypi.org/project/fiverr-mcp-server/)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\nmcp-name: io.github.KyuRish/fiverr-mcp-server\n\nMCP server for searching and browsing Fiverr - gigs, sellers, pricing, and reviews. No API key required.\n\n## Features\n\n- **Search gigs** by keyword with filters (price, seller level, category, sorting)\n- **Get gig details** including pricing packages (Basic/Standard/Premium), description, and tags\n- **View seller profiles** with certifications, languages, hourly rate, and gig listings\n- **Read gig reviews** from the first page of any gig\n- **List categories** to discover valid category slugs for filtered search\n- All prices returned in **USD** (not cents)\n- Built-in **rate limiting** and retry with browser fingerprint rotation\n- Structured **error messages** on failures (no raw crashes)\n\n## Installation\n\n### Using uvx (recommended)\n\n```json\n{\n  \"mcpServers\": {\n    \"fiverr\": {\n      \"command\": \"uvx\",\n      \"args\": [\"fiverr-mcp-server\"]\n    }\n  }\n}\n```\n\n### Using pip\n\n```bash\npip install fiverr-mcp-server\n```\n\n### From source\n\n```bash\ngit clone https://github.com/KyuRish/fiverr-mcp-server.git\ncd fiverr-mcp-server\nuv sync\nuv run fiverr-mcp-server\n```\n\n## Configuration\n\nAdd to your Claude Desktop config (`claude_desktop_config.json`):\n\n- **Windows:** `%APPDATA%\\Claude\\claude_desktop_config.json`\n- **macOS:** `~/Library/Application Support/Claude/claude_desktop_config.json`\n\n```json\n{\n  \"mcpServers\": {\n    \"fiverr\": {\n      \"command\": \"uvx\",\n      \"args\": [\"fiverr-mcp-server\"]\n    }\n  }\n}\n```\n\n### Environment Variables\n\n| Variable | Description | Default |\n|----------|-------------|---------|\n| `TRANSPORT` | Transport mode (`stdio` or `sse`) | `stdio` |\n| `PROXY_URL` | Optional HTTP proxy for requests | - |\n| `RATE_LIMIT_DELAY` | Minimum seconds between requests | `2` |\n\n## Available Tools\n\n### `search_gigs`\nSearch the Fiverr marketplace by keyword. Returns up to 48 gigs per page with pagination info.\n\n**Parameters:**\n- `query` (required) - Search query (e.g. \"logo design\", \"python developer\")\n- `category` - Category slug (use `list_categories` to see valid values)\n- `min_price` / `max_price` - Price range filter in USD\n- `seller_level` - `\"level_one_seller\"`, `\"level_two_seller\"`, or `\"top_rated_seller\"`\n- `sort_by` - `\"relevance\"`, `\"best_selling\"`, `\"newest\"`, `\"price_asc\"`, or `\"price_desc\"`\n- `page` - Page number for pagination\n\n**Returns:** List of gigs with title, price (USD), rating, reviews count, seller name, and URL. Also includes `total_results` and `has_more` for pagination.\n\n### `get_gig_details`\nGet full details of a specific gig including all pricing tiers.\n\n**Parameters:**\n- `url` (required) - Fiverr gig URL or path\n\n**Returns:** Title, description, seller info, packages (name/price/delivery/revisions/features), tags, metadata, rating, reviews count, category, and orders in queue.\n\n### `get_seller_profile`\nGet a seller's profile. Use `seller_name` from search results as the username.\n\n**Parameters:**\n- `username` (required) - Seller's Fiverr username\n\n**Returns:** Display name, bio, location, member since, languages, certifications, hourly rate (USD), gig listings, and verification status.\n\n### `get_gig_reviews`\nGet the first page of reviews for a gig (typically 5-10 reviews loaded from the page).\n\n**Parameters:**\n- `url` (required) - Fiverr gig URL or path\n\n**Returns:** List of reviews with buyer name, country, rating, date, and text.\n\n### `list_categories`\nList all available Fiverr category slugs for use with `search_gigs`.\n\n**Returns:** List of category objects with `slug` and `name`.\n\n## Workflow Examples\n\n**Finding a freelancer:**\n1. `list_categories()` - see available categories\n2. `search_gigs(\"3D character modeling\")` - browse results\n3. `get_gig_details(url)` - check pricing tiers (use URL from search results)\n4. `get_seller_profile(seller_name)` - review their profile (use seller_name from search results)\n5. `get_gig_reviews(url)` - read reviews\n\n## Limitations\n\n- **Reviews** - only the first page of reviews is available (Fiverr loads more via AJAX which requires authenticated requests)\n- **Rate limiting** - Fiverr may block rapid requests. A 2-second minimum delay is enforced between requests (configurable via `RATE_LIMIT_DELAY`)\n- **Data freshness** - all data is scraped from public pages in real-time, not cached\n\n## How It Works\n\nThis server extracts structured data from Fiverr's public pages by reading the Perseus SSR data blob (`<script id=\"perseus-initial-props\">`) that Fiverr's frontend framework embeds in every page. Uses `curl_cffi` for browser TLS fingerprint impersonation to handle Cloudflare protection, with automatic retry and fingerprint rotation.\n\n## Responsible Use\n\nThis tool is intended for personal use - finding freelancers, comparing gigs, and reading reviews through an AI assistant. Please:\n\n- Do not use for mass data harvesting or building databases of seller information\n- Do not use for automated competitive monitoring at scale\n- Respect Fiverr's infrastructure by keeping the default rate limit\n- Be aware that web scraping may violate Fiverr's Terms of Service\n\n## Development\n\n```bash\ngit clone https://github.com/KyuRish/fiverr-mcp-server.git\ncd fiverr-mcp-server\nuv sync\nuv run fiverr-mcp-server\n```\n\n## License\n\nMIT\n",
  "bytes": 5444,
  "sha": "ebca7d31a89434f9405185c5f7a8a67762fee9d52c5ec552469c410923e4e93c",
  "repo_slug": "kyurish/fiverr-mcp-server",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_kyurish_fiverr_mcp_server_f1db2fe7/readme"
}