BigGo MCP Server

BigGo MCP Server utilizes APIs from BigGo, a professional price comparison website.

Local serverstdioPython

What is the BigGo MCP server?

Connect BigGo to Claude, Cursor or any other MCP client and it stops being a tab you switch to. BigGo MCP Server utilizes APIs from BigGo, a professional price comparison website. The biggo mcp server is what makes that connection.

What the server does

  • Product Discovery — Search for products across multiple e-commerce platforms (Amazon, Aliexpress, Ebay, Taobao, Shopee ... etc.)
  • Price History Tracking — Track product price history by supplying product url or related terms
  • Spec Comparison [Disabled on versions >= v0.1.28] — Compare and find products based on their specifications, from basic infos to more complex technical specs

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • product_search — Product search with BigGo search api
  • price_history_graph — Link that visualizes product price history
  • price_history_with_history_id — Uses history IDs from product search results
  • price_history_with_url — Tracks price history using product URLs
  • spec_indexes — Lists available Elasticsearch indexes for product specifications
  • spec_mapping — Shows Elasticsearch index mapping with example documents
  • spec_search — Query product specifications from Elasticsearch
  • get_current_region — Get the current region
  • Prerequisites — 1. Python >= 3.10 2. uvx package manager ( Included with uv ) 3. BigGo Certification

Credentials and setup notes

Configuration is passed through the environment: BIGGO_MCP_SERVER_CLIENT_ID, BIGGO_MCP_SERVER_CLIENT_SECRET, BIGGO_MCP_SERVER_REGION, CLIENT_ID, CLIENT_SECRET. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  1. Python >= 3.10 2. uvx package manager ( Included with uv ) 3. BigGo Certification (client_id and client_secret) for specification search.

Installation

The server ships on PyPI as package, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Where it fits

Plenty of payments and commerce servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. BigGo's toolset — product_search, price_history_graph, price_history_with_history_id and 6 more — is a fair guide to whether it matches your workflow. It is maintained by Funmula-Corp; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 9 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch BigGo.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
product_searchProduct search with BigGo search api
price_history_graphLink that visualizes product price history
price_history_with_history_idUses history IDs from product search results
price_history_with_urlTracks price history using product URLs
spec_indexesLists available Elasticsearch indexes for product specifications
spec_mappingShows Elasticsearch index mapping with example documents
spec_searchQuery product specifications from Elasticsearch
get_current_regionGet the current region
Prerequisites1. Python >= 3.10 2. [uvx package manager ( Included with uv )](https://docs.astral.sh/uv/getting-started/installation/) 3. BigGo Certification (client_id and client_secret) for specification search.

How to install the BigGo MCP server

{
  "mcpServers": {
    "biggo-mcp-server": {
      "command": "uvx",
      "args": [ "BigGo-MCP-Server@latest"],
      "env": {
        "BIGGO_MCP_SERVER_CLIENT_ID": "CLIENT_ID",
        "BIGGO_MCP_SERVER_CLIENT_SECRET": "CLIENT_SECRET",
        "BIGGO_MCP_SERVER_REGION": "REGION"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  1. Python >= 3.10 2. uvx package manager ( Included with uv ) 3. BigGo Certification (client_id and client_secret) for specification search.
VariableDescriptionRequired
BIGGO_MCP_SERVER_CLIENT_IDConfiguration value read at startup.Optional
BIGGO_MCP_SERVER_CLIENT_SECRETCredential the server authenticates with.Yes
BIGGO_MCP_SERVER_REGIONConfiguration value read at startup.Optional
CLIENT_IDConfiguration value read at startup.Optional
CLIENT_SECRETCredential the server authenticates with.Yes

Example prompts to try

  • Use BigGo to product search.
  • Use BigGo to price history graph.
  • Use BigGo to price history with history id.

Frequently asked questions

It connects BigGo to MCP-compatible AI assistants such as Claude and Cursor, exposing 9 tools (product_search, price_history_graph, price_history_with_history_id, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with BigGo directly.