Decodo
live DeveloperTechnologyWeb scraping via the Decodo (formerly Smartproxy) Scraper API (bring your own credentials) — universal scraping with JS rendering, parsed Google search results, and Amazon product data.
Tools
decodo_scrape Scrape any web page through Decodo (formerly Smartproxy) rotating proxies and return its content.
No parameters required.
Try it
decodo_google_search Google search results scraping via Decodo (formerly Smartproxy) — runs a Google search through rotating proxies and
No parameters required.
Try it
decodo_amazon_product Get structured Amazon product data via Decodo (formerly Smartproxy) — title, pricing, rating, reviews, images,
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/decodo/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/decodo/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"decodo_scrape","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("decodo_scrape", {}); // Or ask in plain English:
const answer = await px.ask("web scraping via the decodo (formerly smartproxy) scraper api (bring your own credentials) — universal scraping with js rendering, parsed google search results, and amazon product data");