fiverr mcp server for VS Code
io.github.kyurish/fiverr-mcp-server
Search Fiverr gigs, sellers, pricing, and reviews. No API key required.
client:VS Code
transport:stdio
runtime:pypi
Install fiverr mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "rate-limit-delay",
"description": "RATE_LIMIT_DELAY",
"password": true
},
{
"type": "promptString",
"id": "proxy-url",
"description": "PROXY_URL",
"password": true
}
],
"servers": {
"fiverr-mcp-server": {
"type": "stdio",
"command": "uvx",
"args": [
"fiverr-mcp-server"
],
"env": {
"RATE_LIMIT_DELAY": "${input:rate-limit-delay}",
"PROXY_URL": "${input:proxy-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs