Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.bigdata.com/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Qwen Code is Alibaba’s open coding agent that runs in your terminal and supports MCP servers natively. This guide walks you through setting up the Bigdata.com connector in Qwen Code using API Key authentication, so you can search financial news, resolve securities, and generate research reports directly from your terminal.

Requirements

  • An Alibaba Cloud Model Studio account and an API Key for a region (for instance, Singapore: ap-southeast-1).
  • Qwen Code installed on your machine. You can download it from the Qwen Code website and follow the installation instructions for your operating system.

Configuration Steps

1

Create a Bigdata API key

You can create your API Key in the Developer Platform > API Keys.Developer Platform > API Keys
Ideally, store the API Key in your password manager, so you can access it in the future.
2

Add the Bigdata.com MCP connector

The following command will register the Bigdata.com Remote MCP server in Qwen Code at the user scope, so it is available in every project. Replace YOUR_API_KEY with the key you created in the previous step.
qwen mcp add --scope user --transport http bigdata-com https://mcp.bigdata.com/ \
  --header "x-api-key: YOUR_API_KEY"
3

Verify the connection

Confirm the connector is registered and reachable by running:
qwen mcp list
You should see bigdata-com listed with a Connected status.Bigdata.com MCP successfully connected in Qwen Code
4

Try it out

Start a new Qwen Code session in your terminal:
qwen
Then ask Qwen Code to use Bigdata to prepare research on any topic. For example:
Using Bigdata, can you help me prepare for the earnings call of Broadcom?
Asking Qwen Code to prepare for the Broadcom earnings callQwen Code will call the Bigdata MCP tools during its reasoning loop, retrieve grounded financial content, and produce a structured briefing with analyst consensus, institutional activity, key risks, and suggested questions for the call.Qwen Code earnings call briefing outputYou can then ask Qwen Code to turn the briefing into a PDF report:
Can you create a pdf report?
Requesting a PDF report in Qwen CodeQwen Code will write and run a short script to generate the PDF and save it to your working directory.PDF report generated by Qwen Code