DocumentationDashboard

Agents

MCP server

Every endpoint is also an MCP tool, and this documentation is served over MCP as well — so an agent can discover what exists and call it without a human reading a page first.

Connect

Your API token is in the sidebar of your dashboard.

Add the server from a terminal:

claude mcp add roketfy-data-engine \
  -e DATA_ENGINE_API_TOKEN=YOUR_TOKEN \
  -- npx -y @roketfy/data-engine-mcp

Verify it's configured:

claude mcp list

Or add it to your client config directly (also what Claude Desktop reads):

{
  "mcpServers": {
    "roketfy-data-engine": {
      "command": "npx",
      "args": ["-y", "@roketfy/data-engine-mcp"],
      "env": {
        "DATA_ENGINE_API_TOKEN": "YOUR_TOKEN"
      }
    }
  }
}

Calls go out over the same public API as your own code, under the same token: the same plan limits, the same live concurrency ceiling, the same credit cost, and every call lands in your request log. Set DATA_ENGINE_API_URL if you need to point the server at something other than https://data-api.roketfy.com.

Tools

ToolPlatformEndpointCredits
trendyol_product_detailTrendyolProduct Detail1
trendyol_reviewsTrendyolProduct Reviews1
trendyol_questionsTrendyolProduct Questions1
trendyol_top_rankingsTrendyolTop Rankings1
trendyol_searchTrendyolProduct Search1
trendyol_category_productsTrendyolCategory Products1
trendyol_store_productsTrendyolStore Products1
trendyol_search_suggestionsTrendyolSearch Suggestions1
trendyol_popular_searchesTrendyolPopular Searches1
hepsiburada_product_detailHepsiburadaProduct Detail1
hepsiburada_reviewsHepsiburadaProduct Reviews1
hepsiburada_questionsHepsiburadaProduct Questions1
hepsiburada_searchHepsiburadaProduct Search1
hepsiburada_category_productsHepsiburadaCategory Products1
hepsiburada_search_suggestionsHepsiburadaSearch Suggestions1
amazon_product_detailAmazonProduct Detail1
amazon_product_reviewsAmazonProduct Reviews10
amazon_offersAmazonAll Offers1
amazon_searchAmazonSearch1
amazon_raw_htmlAmazonRaw HTML1
n11_product_detailN11Product Detail1
n11_product_reviewsN11Product Reviews1
n11_search_suggestionsN11Search Suggestions1
akakce_product_detailAkakçeProduct Detail1
akakce_offersAkakçeOffers1
akakce_price_historyAkakçePrice History1
akakce_searchAkakçeSearch Products2
akakce_search_filtersAkakçeSearch Filters1
akakce_search_suggestionsAkakçeSearch Suggestions1
akakce_category_productsAkakçeCategory Products2
google_searchGoogleSearch10
google_search_ai_modeGoogleSearch (AI Mode)10
google_maps_searchGoogleMaps Search25
google_maps_placeGoogleMaps Place40
google_maps_reviewsGoogleMaps Reviews10
google_shoppingGoogleShopping Search10
google_shopping_productGoogleShopping Product10
google_shopping_product_storesGoogleShopping Product Sellers10
google_flightsGoogleFlights10
google_hotelsGoogleHotels10
google_hotels_detailGoogleHotel Detail10
google_newsGoogleNews10
google_trendsGoogleTrends10
google_trendingGoogleTrending Now10
google_geminiGoogleGemini25
google_play_searchGoogle PlayPlay Store Search10
google_play_appGoogle PlayPlay Store App10
google_play_reviewsGoogle PlayPlay Store Reviews10
app_store_searchApp StoreApp Store Search15
app_store_appApp StoreApp Store App15
app_store_reviewsApp StoreApp Store Reviews10
trustpilot_searchTrustpilotBusiness Search19
trustpilot_reviewsTrustpilotReviews10
tripadvisor_searchTripadvisorBusiness Search19
tripadvisor_reviewsTripadvisorReviews10
walmart_searchWalmartSearch10
walmart_product_detailWalmartProduct Detail10
walmart_storeWalmartStore Lookup10
youtube_searchYouTubeSearch10
chatgpt_chatChatGPTChat25
attributes_enrichAttributesEnrich Product Attributes25

Documentation resources

The server exposes these docs as MCP resources, so an agent can read an endpoint's parameters before calling it.

URIWhat it holds
docs://catalogEvery endpoint, its tool name and its credit cost.
docs://<platform>/<slug>One endpoint's parameters, cost and an example call.