CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Fiverr Mcp Server

kyurish/fiverr-mcp-server
2STDIOregistry active
Summary

Scrapes Fiverr's public pages to search gigs, fetch pricing tiers, read seller profiles, and pull reviews through Claude. Uses curl_cffi with browser fingerprinting to bypass Cloudflare, parsing Perseus SSR data blobs directly from the HTML. Exposes five tools: search_gigs with filters for price, seller level, and category, get_gig_details for package breakdowns, get_seller_profile for certifications and hourly rates, get_gig_reviews for the first page of feedback, and list_categories for valid filter slugs. No API key needed since it's web scraping, but comes with rate limiting and the usual caveats about violating Fiverr's TOS. Reach for this when you need to compare freelancers or research services without leaving your chat window.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Fiverr MCP Server

PyPI version License: MIT

mcp-name: io.github.KyuRish/fiverr-mcp-server

MCP server for searching and browsing Fiverr - gigs, sellers, pricing, and reviews. No API key required.

Features

  • Search gigs by keyword with filters (price, seller level, category, sorting)
  • Get gig details including pricing packages (Basic/Standard/Premium), description, and tags
  • View seller profiles with certifications, languages, hourly rate, and gig listings
  • Read gig reviews from the first page of any gig
  • List categories to discover valid category slugs for filtered search
  • All prices returned in USD (not cents)
  • Built-in rate limiting and retry with browser fingerprint rotation
  • Structured error messages on failures (no raw crashes)

Installation

Using uvx (recommended)

{
  "mcpServers": {
    "fiverr": {
      "command": "uvx",
      "args": ["fiverr-mcp-server"]
    }
  }
}

Using pip

pip install fiverr-mcp-server

From source

git clone https://github.com/KyuRish/fiverr-mcp-server.git
cd fiverr-mcp-server
uv sync
uv run fiverr-mcp-server

Configuration

Add to your Claude Desktop config (claude_desktop_config.json):

  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "fiverr": {
      "command": "uvx",
      "args": ["fiverr-mcp-server"]
    }
  }
}

Environment Variables

VariableDescriptionDefault
TRANSPORTTransport mode (stdio or sse)stdio
PROXY_URLOptional HTTP proxy for requests-
RATE_LIMIT_DELAYMinimum seconds between requests2

Available Tools

search_gigs

Search the Fiverr marketplace by keyword. Returns up to 48 gigs per page with pagination info.

Parameters:

  • query (required) - Search query (e.g. "logo design", "python developer")
  • category - Category slug (use list_categories to see valid values)
  • min_price / max_price - Price range filter in USD
  • seller_level - "level_one_seller", "level_two_seller", or "top_rated_seller"
  • sort_by - "relevance", "best_selling", "newest", "price_asc", or "price_desc"
  • page - Page number for pagination

Returns: List of gigs with title, price (USD), rating, reviews count, seller name, and URL. Also includes total_results and has_more for pagination.

get_gig_details

Get full details of a specific gig including all pricing tiers.

Parameters:

  • url (required) - Fiverr gig URL or path

Returns: Title, description, seller info, packages (name/price/delivery/revisions/features), tags, metadata, rating, reviews count, category, and orders in queue.

get_seller_profile

Get a seller's profile. Use seller_name from search results as the username.

Parameters:

  • username (required) - Seller's Fiverr username

Returns: Display name, bio, location, member since, languages, certifications, hourly rate (USD), gig listings, and verification status.

get_gig_reviews

Get the first page of reviews for a gig (typically 5-10 reviews loaded from the page).

Parameters:

  • url (required) - Fiverr gig URL or path

Returns: List of reviews with buyer name, country, rating, date, and text.

list_categories

List all available Fiverr category slugs for use with search_gigs.

Returns: List of category objects with slug and name.

Workflow Examples

Finding a freelancer:

  1. list_categories() - see available categories
  2. search_gigs("3D character modeling") - browse results
  3. get_gig_details(url) - check pricing tiers (use URL from search results)
  4. get_seller_profile(seller_name) - review their profile (use seller_name from search results)
  5. get_gig_reviews(url) - read reviews

Limitations

  • Reviews - only the first page of reviews is available (Fiverr loads more via AJAX which requires authenticated requests)
  • Rate limiting - Fiverr may block rapid requests. A 2-second minimum delay is enforced between requests (configurable via RATE_LIMIT_DELAY)
  • Data freshness - all data is scraped from public pages in real-time, not cached

How It Works

This 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.

Responsible Use

This tool is intended for personal use - finding freelancers, comparing gigs, and reading reviews through an AI assistant. Please:

  • Do not use for mass data harvesting or building databases of seller information
  • Do not use for automated competitive monitoring at scale
  • Respect Fiverr's infrastructure by keeping the default rate limit
  • Be aware that web scraping may violate Fiverr's Terms of Service

Development

git clone https://github.com/KyuRish/fiverr-mcp-server.git
cd fiverr-mcp-server
uv sync
uv run fiverr-mcp-server

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

RATE_LIMIT_DELAY

Minimum delay between requests in seconds (default: 2)

PROXY_URL

Optional proxy URL for avoiding rate limits

Categories
Search & Web Crawling
Registryactive
Packagefiverr-mcp-server
TransportSTDIO
UpdatedFeb 24, 2026
View on GitHub

Related Search & Web Crawling MCP Servers

View all →
Google Search

com.mcparmory/google-search

Scrape Google search results with SERP data, ads, and knowledge panels
25
Brave Search

io.github.pipeworx-io/brave-search

Brave Search MCP — independent web index (no Google/Bing dependency)
Serper Search and Scrape

marcopesani/mcp-server-serper

Serper MCP Server supporting search and webpage scraping
154
Brave Search Mcp Server

brave/brave-search-mcp-server

Brave Search MCP Server: web results, images, videos, rich results, AI summaries, and more.
1.2k
Google Search Console

com.mcparmory/google-search-console

Query search analytics, manage sitemaps, and inspect site URLs and status
25
Google Search Console

acamolese/google-search-console-mcp

Google Search Console MCP server: SEO audits, performance queries, URL inspection, indexing checks.
3