fiverr-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PROXY_URL | No | Optional HTTP proxy for requests | |
| TRANSPORT | No | Transport mode (`stdio` or `sse`) | stdio |
| RATE_LIMIT_DELAY | No | Minimum seconds between requests | 2 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_gigsA | Search Fiverr gigs by keyword. Returns up to 48 gigs per page. All prices in USD. Use the gig URL from results with get_gig_details() for full pricing. Use the seller_name from results with get_seller_profile() for seller info. Args: query: Search query (e.g. "logo design", "python developer") category: Category slug to filter by (leave empty for all categories) min_price: Minimum price in USD max_price: Maximum price in USD seller_level: Filter by seller level sort_by: Sort order for results page: Page number (starts at 1) |
| get_gig_detailsA | Get full details of a Fiverr gig including all pricing tiers (Basic/Standard/Premium). All prices in USD. Use the seller username from results with get_seller_profile() for more seller info. Args: url: Fiverr gig URL (e.g. "https://www.fiverr.com/username/gig-slug") or path ("username/gig-slug") |
| get_seller_profileA | Get a Fiverr seller's profile including bio, languages, certifications, and gig listings. Use the seller_name from search_gigs() results as the username here. Args: username: Seller's Fiverr username (e.g. "johndoe") |
| get_gig_reviewsA | Get reviews for a Fiverr gig. Returns the first page of reviews only (typically 5-10 reviews). Args: url: Fiverr gig URL (e.g. "https://www.fiverr.com/username/gig-slug") or path |
| list_categoriesA | List all available Fiverr category slugs. Use these slugs with the category parameter in search_gigs(). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each tool targets a distinct aspect of Fiverr data: gig details, reviews, seller profile, categories, and search. There is no overlapping functionality.
All tools follow a consistent verb_noun pattern with underscores: get_gig_details, get_gig_reviews, get_seller_profile, list_categories, search_gigs.
Five tools is appropriate for a focused server that covers search, retrieval of gigs, reviews, seller info, and category listing without being too sparse or bloated.
The server covers key read operations for Fiverr discovery but lacks write operations (e.g., creating gigs or orders). It is complete for its apparent purpose of inspecting Fiverr data.